fix: access source error

This commit is contained in:
jialin
2026-02-03 18:21:08 +08:00
parent 497813eced
commit 6d65797b4f
8 changed files with 67 additions and 61 deletions
+1 -8
View File
@@ -17,14 +17,7 @@ const CategorySelect = (props: any) => {
</span>
);
};
return (
<SealSelect
options={options}
optionRenderer={optionRenderer}
labelRender={optionRenderer}
{...rest}
/>
);
return <SealSelect options={options} {...rest} />;
};
export default CategorySelect;