Added category update

This commit is contained in:
Alexis
2025-04-06 14:41:46 +02:00
parent 8005a8e9a2
commit b32fab81f6
8 changed files with 281 additions and 89 deletions

View File

@@ -10,5 +10,5 @@ export interface Category {
export const categorySchema = z.object({
id: z.number().int(),
name: z.string(),
color: z.string().default("black")
color: z.string().default("black"),
})