From 52a5ce6eeadb331c22ff6e9de5f44e8d8040f57a Mon Sep 17 00:00:00 2001 From: Radek Czemerys Date: Sun, 23 Aug 2020 14:46:40 +0200 Subject: [PATCH] fix: update previews when changing content of a note --- src/screens/Compose/Compose.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/screens/Compose/Compose.tsx b/src/screens/Compose/Compose.tsx index b35385d6..8037f5ce 100644 --- a/src/screens/Compose/Compose.tsx +++ b/src/screens/Compose/Compose.tsx @@ -412,7 +412,7 @@ export const Compose = (): JSX.Element => { return; } setNoteText(newNoteText); - saveNote(false, true, true, false, { + saveNote(false, true, false, false, { newTitle: title, newNoteText, });