matches: add animation, add suspense for table, add no-image image

This commit is contained in:
smanylov
2026-04-08 13:41:56 +07:00
parent eb2615c303
commit 0c3ccb2806
10 changed files with 267 additions and 26 deletions
+2 -2
View File
@@ -96,11 +96,11 @@ export const createCaseSchema = z
.object({
textArea: z
.string()
.min(6, { error: 'text-area-error-fill-complaint-text' })
.min(6, { error: 'fill-text-of-the-case' })
.trim(),
caseTitle: z
.string()
.min(6, { error: 'text-area-error-fill-complaint-text' })
.min(6, { error: 'fill-title-of-the-case' })
.trim(),
})