fix: "cannot remove collection" related to unused stuff

This commit is contained in:
Sonny
2025-01-21 18:14:43 +01:00
parent fb0345bf68
commit 151ac0602a
8 changed files with 22 additions and 10 deletions

View File

@@ -6,7 +6,6 @@ export const createCollectionValidator = vine.compile(
name: vine.string().trim().minLength(1).maxLength(254),
description: vine.string().trim().maxLength(254).nullable(),
visibility: vine.enum(Visibility),
nextId: vine.number().optional(),
})
);