From 137c33c323f1c3cf60394962e1d1cf5fc4ffd06d Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Sat, 10 Jun 2023 22:14:59 +0300 Subject: [PATCH] fix: Grammar in error message --- server/models/Collection.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/models/Collection.ts b/server/models/Collection.ts index 4e0325e2a..418540cbe 100644 --- a/server/models/Collection.ts +++ b/server/models/Collection.ts @@ -168,7 +168,7 @@ class Collection extends ParanoidModel { @Length({ max: 50, - msg: `index must 50 characters or less`, + msg: `index must be 50 characters or less`, }) @Column index: string | null;