diff --git a/src/pages/RevoltApp.tsx b/src/pages/RevoltApp.tsx
index 446494d6..330015d3 100644
--- a/src/pages/RevoltApp.tsx
+++ b/src/pages/RevoltApp.tsx
@@ -35,12 +35,11 @@ export default function App() {
const path = useLocation().pathname;
const fixedBottomNav =
path === "/" || path === "/settings" || path.startsWith("/friends");
- const inSettings = path.includes("/settings");
const inChannel = path.includes("/channel");
const inSpecial =
(path.startsWith("/friends") && isTouchscreenDevice) ||
path.startsWith("/invite") ||
- path.startsWith("/settings");
+ path.includes("/settings");
return (
}
}
rightPanel={
- !inSettings && inChannel
+ !inSpecial && inChannel
? { width: 240, component: }
: undefined
}