From 29ce004974cb0bf0ff2dad7717dc273af3025d07 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Thu, 5 Feb 2026 22:13:09 +0200 Subject: [PATCH] chore(mobile): add possible work-around for note switcher sometimes disappearing --- apps/client/src/widgets/layout/NoteTitleActions.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/widgets/layout/NoteTitleActions.tsx b/apps/client/src/widgets/layout/NoteTitleActions.tsx index 7c4e68698a..c11b690b51 100644 --- a/apps/client/src/widgets/layout/NoteTitleActions.tsx +++ b/apps/client/src/widgets/layout/NoteTitleActions.tsx @@ -23,7 +23,7 @@ export default function NoteTitleActions() { {noteType === "search" && } - {viewScope?.viewMode === "default" && } + {!viewScope?.viewMode || viewScope.viewMode === "default" && } ); }