diff --git a/apps/client/src/widgets/type_widgets/text/EditableText.tsx b/apps/client/src/widgets/type_widgets/text/EditableText.tsx index efc3f7d20..b5d7bfe0b 100644 --- a/apps/client/src/widgets/type_widgets/text/EditableText.tsx +++ b/apps/client/src/widgets/type_widgets/text/EditableText.tsx @@ -125,7 +125,7 @@ export default function EditableText({ note, parentComponent, ntxId, noteContext const resp = await note_create.createNoteWithTypePrompt(notePath, { activate: false, - title: title + title }); if (!resp || !resp.note) return; @@ -321,7 +321,7 @@ function EditableTextTouchBar({ watchdogRef, refreshTouchBarRef }: { watchdogRef const [ headingSelectedIndex, setHeadingSelectedIndex ] = useState(); function refresh() { - let headingSelectedIndex: number | undefined = undefined; + let headingSelectedIndex: number | undefined; const editor = watchdogRef.current?.editor; const headingCommand = editor?.commands.get("heading"); const paragraphCommand = editor?.commands.get("paragraph"); @@ -335,7 +335,7 @@ function EditableTextTouchBar({ watchdogRef, refreshTouchBarRef }: { watchdogRef setHeadingSelectedIndex(headingSelectedIndex); } - useEffect(refresh, []); + useEffect(refresh, [ watchdogRef ]); refreshTouchBarRef.current = refresh; return (