From 9f74a54c0d7fdb817b6175f7cbc9451d9e176040 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Tue, 2 Dec 2025 10:06:08 +0200 Subject: [PATCH] fix(react/type_widgets): revision causes jump at start of editor (closes #7912) --- apps/client/src/widgets/react/hooks.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/client/src/widgets/react/hooks.tsx b/apps/client/src/widgets/react/hooks.tsx index 07429b73c..b14e079e7 100644 --- a/apps/client/src/widgets/react/hooks.tsx +++ b/apps/client/src/widgets/react/hooks.tsx @@ -484,8 +484,7 @@ export function useNoteBlob(note: FNote | null | undefined, componentId?: string return; } - if (loadResults.hasRevisionForNote(note.noteId) || - loadResults.isNoteContentReloaded(note.noteId, componentId)) { + if (loadResults.isNoteContentReloaded(note.noteId, componentId)) { refresh(); } });