remove hidden from table type (#638)

This commit is contained in:
Guy Ben-Aharon
2025-03-30 15:47:56 +03:00
committed by GitHub
parent 874aa5ab75
commit 4e5b467ce5

View File

@@ -57,7 +57,6 @@ export const dbTableSchema: z.ZodType<DBTable> = z.object({
createdAt: z.number(),
width: z.number().optional(),
comments: z.string().optional(),
hidden: z.boolean().optional(),
order: z.number().optional(),
});