aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/src
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src')
-rw-r--r--frontend/src/App.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx
index 409878c..9f53ace 100644
--- a/frontend/src/App.tsx
+++ b/frontend/src/App.tsx
@@ -37,7 +37,7 @@ import Settings from './components/Settings';
function Dashboard({ theme, setTheme }: { theme: string, setTheme: (t: string) => void }) {
const navigate = useNavigate();
- const [sidebarVisible, setSidebarVisible] = useState(false);
+ const [sidebarVisible, setSidebarVisible] = useState(true);
return (
<div className={`dashboard ${sidebarVisible ? 'sidebar-visible' : 'sidebar-hidden'} theme-${theme}`}>