chore(mobile): add possible work-around for note switcher sometimes disappearing

This commit is contained in:
Elian Doran 2026-02-05 22:13:09 +02:00
parent 026ba5ddce
commit 29ce004974
No known key found for this signature in database

View File

@ -23,7 +23,7 @@ export default function NoteTitleActions() {
<PromotedAttributes note={note} componentId={componentId} noteContext={noteContext} />
{noteType === "search" && <SearchProperties note={note} ntxId={ntxId} />}
<EditedNotes />
{viewScope?.viewMode === "default" && <NoteTypeSwitcher />}
{!viewScope?.viewMode || viewScope.viewMode === "default" && <NoteTypeSwitcher />}
</div>
);
}