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); } }