diff --git a/apps/web/components/dashboard/categories/EditCategoryDialog.tsx b/apps/web/components/dashboard/categories/EditCategoryDialog.tsx index b0061f1..38c8d3b 100644 --- a/apps/web/components/dashboard/categories/EditCategoryDialog.tsx +++ b/apps/web/components/dashboard/categories/EditCategoryDialog.tsx @@ -34,6 +34,7 @@ import { useForm } from "react-hook-form"; import { z } from "zod"; import { zUpdateCategoryRequestSchema, ZUpdateCategoryRequest } from "@lifetracker/shared/types/categories"; +import { Textarea } from "@/components/ui/textarea"; export default function EditCategoryDialog({ category: initialCategory, @@ -88,51 +89,70 @@ export default function EditCategoryDialog({
mutate(val))}>
- ( - - Name - - - - - - )} - /> - ( - - Code - - - - - - )} - /> +
+ ( + + {/* Code */} + + + + + + )} + /> + ( + + {/* Name */} + + + + + + )} + /> + ( + + {/* Color */} + + + + + + )} + /> +
( - Description + {/* Description */} - )} /> - {/* ( - - Color - - - - - - )} - /> */}