From 595f4c6d2ed6de1c60c29bee830a73c569e19199 Mon Sep 17 00:00:00 2001 From: mertalev <101130780+mertalev@users.noreply.github.com> Date: Sun, 11 May 2025 13:04:38 -0400 Subject: [PATCH] simplify dummy --- server/src/decorators.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/decorators.ts b/server/src/decorators.ts index adfa9fadd7..6b34ffcafe 100644 --- a/server/src/decorators.ts +++ b/server/src/decorators.ts @@ -116,7 +116,7 @@ export const DummyValue = { DATE: new Date(), TIME_BUCKET: '2024-01-01T00:00:00.000Z', BOOLEAN: true, - VECTOR: `${JSON.stringify(Array.from({ length: 512 }, () => 0))}`, + VECTOR: JSON.stringify(Array.from({ length: 512 }, () => 0)), }; export const GENERATE_SQL_KEY = 'generate-sql-key';