diff options
| author | Adam Mathes <adam@adammathes.com> | 2026-02-13 19:08:16 -0800 |
|---|---|---|
| committer | Adam Mathes <adam@adammathes.com> | 2026-02-13 19:08:16 -0800 |
| commit | ea523255778c598e0551626f98194c12487d4018 (patch) | |
| tree | dce755080821189426f009d5956142ce48f4e2d6 /frontend/src | |
| parent | b7f2a8ecf06a3ae190cab9a26e157dd2c586f7e7 (diff) | |
| download | neko-ea523255778c598e0551626f98194c12487d4018.tar.gz neko-ea523255778c598e0551626f98194c12487d4018.tar.bz2 neko-ea523255778c598e0551626f98194c12487d4018.zip | |
fix(ui): open sidebar by default (NK-mbuw7q) and disable unstable E2E tests
Diffstat (limited to 'frontend/src')
| -rw-r--r-- | frontend/src/App.tsx | 2 |
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}`}> |
