Skip to content

Commit 4e25d44

Browse files
committed
Set navbar to not appear in collab page
1 parent 0f9e843 commit 4e25d44

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

frontend/src/app/components/layout/NavbarWrapper.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,9 @@ export default function NavbarWrapper() {
1515

1616
// Don't show navbar on auth pages
1717
const isAuthPage = pathname.startsWith("/auth");
18+
const isCollabPage = pathname.startsWith("/collab");
1819

19-
if (isAuthPage) {
20+
if (isAuthPage || isCollabPage) {
2021
return null;
2122
}
2223

0 commit comments

Comments
 (0)