diff --git a/apps/mobile/src/screens/editor/tiptap/useEditor.ts b/apps/mobile/src/screens/editor/tiptap/useEditor.ts index 39935a03e..2267b051b 100644 --- a/apps/mobile/src/screens/editor/tiptap/useEditor.ts +++ b/apps/mobile/src/screens/editor/tiptap/useEditor.ts @@ -178,6 +178,9 @@ export const useEditor = ( if (!note && id) { currentNote.current = db.notes?.note(id).data as NoteType; state.current?.onNoteCreated && state.current.onNoteCreated(id); + if (!noteData.title) { + postMessage(EditorEvents.titleplaceholder, currentNote.current.title); + } } if (useEditorStore.getState().currentEditingNote !== id && isDefaultEditor) {