From 4cc2fa5300ebb1fa97264941c0f3654685f6759c Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Mon, 14 Jul 2025 16:49:42 +0300 Subject: [PATCH] fix(snippets): warning about missing note IDs when deleting --- apps/client/src/widgets/type_widgets/ckeditor/snippets.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/widgets/type_widgets/ckeditor/snippets.ts b/apps/client/src/widgets/type_widgets/ckeditor/snippets.ts index b2d99cfd6..7c29e58cc 100644 --- a/apps/client/src/widgets/type_widgets/ckeditor/snippets.ts +++ b/apps/client/src/widgets/type_widgets/ckeditor/snippets.ts @@ -59,7 +59,7 @@ async function handleContentUpdate(affectedNoteIds: string[]) { const templateNoteIds = new Set(templateCache.keys()); const affectedTemplateNoteIds = templateNoteIds.intersection(updatedNoteIds); - await froca.getNotes(affectedNoteIds); + await froca.getNotes(affectedNoteIds, true); let fullReloadNeeded = false; for (const affectedTemplateNoteId of affectedTemplateNoteIds) {