From b9b8f906183baf9e691a6a689cb4e842d051f9f4 Mon Sep 17 00:00:00 2001 From: Zoey Date: Tue, 2 Jul 2024 22:00:32 +0200 Subject: [PATCH] Update index.js Signed-off-by: Zoey --- backend/lib/validator/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/lib/validator/index.js b/backend/lib/validator/index.js index cadc2d43f..859bf1364 100644 --- a/backend/lib/validator/index.js +++ b/backend/lib/validator/index.js @@ -12,7 +12,7 @@ const ajv = new Ajv({ format: 'full', // strict regexes for format checks coerceTypes: true, schemas: [definitions], - strict: 'log', + strict: false, }); addFormats(ajv);