This commit is contained in:
hamid zarghami
2026-01-29 09:48:53 +03:30
parent 7e5184529e
commit 420e011b50
19 changed files with 568 additions and 17 deletions
@@ -18,7 +18,7 @@ const CategoriesSelect: FC<Props> = (props) => {
items={categories?.data?.map((item) => {
return {
label: item.title,
value: item.id
value: item.id + ''
}
}) || []}
{...props}