From dd8673ea5a0c36dc38dfa5098d7f68a300bf16c0 Mon Sep 17 00:00:00 2001 From: Stephanie Gredell Date: Thu, 11 Dec 2025 15:27:35 -0800 Subject: [PATCH] fix error blocking deployment --- backend/src/controllers/speechSounds.controller.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/src/controllers/speechSounds.controller.ts b/backend/src/controllers/speechSounds.controller.ts index efba31a..de579ec 100644 --- a/backend/src/controllers/speechSounds.controller.ts +++ b/backend/src/controllers/speechSounds.controller.ts @@ -151,7 +151,8 @@ export async function clearPronunciationsCache(req: AuthRequest, res: Response) // Delete all cached pronunciations const result = await db.execute({ - sql: 'DELETE FROM word_pronunciations' + sql: 'DELETE FROM word_pronunciations', + args: [] }); res.json({