Skip to content
Snippets Groups Projects
Commit 9e8dde82 authored by insert's avatar insert
Browse files

Fix: don't hide sidebars on friends on desktop

parent 0f5c5316
No related merge requests found
......@@ -36,7 +36,7 @@ export default function App() {
const fixedBottomNav = (path === '/' || path === '/settings' || path.startsWith("/friends"));
const inSettings = path.includes('/settings');
const inChannel = path.includes('/channel');
const inSpecial = path.startsWith('/invite') || path.startsWith("/friends") || path.startsWith("/settings");
const inSpecial = (path.startsWith("/friends") && isTouchscreenDevice) || path.startsWith('/invite') || path.startsWith("/settings");
return (
<OverlappingPanels
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment