Browse Source

fix error blocking deployment

drawing-pad
Stephanie Gredell 1 month ago
parent
commit
dd8673ea5a
  1. 3
      backend/src/controllers/speechSounds.controller.ts

3
backend/src/controllers/speechSounds.controller.ts

@ -151,7 +151,8 @@ export async function clearPronunciationsCache(req: AuthRequest, res: Response) @@ -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({

Loading…
Cancel
Save