From f94db0681208dabd6ed2f06e72399681e1938bb1 Mon Sep 17 00:00:00 2001 From: Carlos Valente Date: Mon, 6 Jan 2025 21:54:15 +0100 Subject: [PATCH] refactor: wider sheet id length --- apps/server/src/api-data/sheets/sheets.validation.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/server/src/api-data/sheets/sheets.validation.ts b/apps/server/src/api-data/sheets/sheets.validation.ts index ab36553ec..3f15b0224 100644 --- a/apps/server/src/api-data/sheets/sheets.validation.ts +++ b/apps/server/src/api-data/sheets/sheets.validation.ts @@ -8,7 +8,7 @@ export const validateRequestConnection = [ .exists() .isString() .isLength({ - min: 40, + min: 20, max: 100, }) .withMessage('Sheet ID is usually 44 characters long'),