diff --git a/frontend/src/components/editor-page/head-meta-properties/note-and-app-title-head.tsx b/frontend/src/components/editor-page/head-meta-properties/note-and-app-title-head.tsx index 3de403c28..bc026d982 100644 --- a/frontend/src/components/editor-page/head-meta-properties/note-and-app-title-head.tsx +++ b/frontend/src/components/editor-page/head-meta-properties/note-and-app-title-head.tsx @@ -18,7 +18,7 @@ export const NoteAndAppTitleHead: React.FC = () => { const showDot = useHasMarkdownContentBeenChangedInBackground() const noteAndAppTitle = useMemo(() => { - return (showDot ? '(•) ' : '') + noteTitle + ' - ' + appTitle + return (showDot ? '• ' : '') + noteTitle + ' - ' + appTitle }, [appTitle, noteTitle, showDot]) return (