From e9b826e49838b0bf93f6c7ca929fad77e8ff6476 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sat, 31 Jan 2026 20:22:28 +0200 Subject: [PATCH] chore(mobile/tab_switcher): stop auto-showing --- apps/client/src/widgets/mobile_widgets/TabSwitcher.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/client/src/widgets/mobile_widgets/TabSwitcher.tsx b/apps/client/src/widgets/mobile_widgets/TabSwitcher.tsx index c3d32129c..6ee84f046 100644 --- a/apps/client/src/widgets/mobile_widgets/TabSwitcher.tsx +++ b/apps/client/src/widgets/mobile_widgets/TabSwitcher.tsx @@ -21,7 +21,7 @@ import LinkButton from "../react/LinkButton"; import Modal from "../react/Modal"; export default function TabSwitcher() { - const [ shown, setShown ] = useState(true); + const [ shown, setShown ] = useState(false); const mainNoteContexts = useMainNoteContexts(); return ( @@ -225,6 +225,7 @@ function getWorkspaceTabBackgroundColorHue(noteContext: NoteContext) { return getHue(parsedColor); } catch (e) { // Colors are non-critical, simply ignore. + console.warn(e); } }