chore(mobile/tab_switcher): stop auto-showing

This commit is contained in:
Elian Doran 2026-01-31 20:22:28 +02:00
parent e7f356b87c
commit e9b826e498
No known key found for this signature in database

View File

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