From 73bf283fd7879dab4878521610767ba15bd2fe69 Mon Sep 17 00:00:00 2001 From: Ammar Ahmed Date: Sat, 17 May 2025 12:14:22 +0500 Subject: [PATCH] mobile: add line break when appending to note --- apps/mobile/share/share.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/mobile/share/share.js b/apps/mobile/share/share.js index fbb95197f..b63640af5 100644 --- a/apps/mobile/share/share.js +++ b/apps/mobile/share/share.js @@ -307,7 +307,7 @@ const ShareView = () => { noteData = { content: { - data: (rawContent?.data || "") + noteContent.current, + data: (rawContent?.data || "") + "
" + noteContent.current, type: "tiptap" }, id: note.id,