diff --git a/apps/app-frontend/src/App.vue b/apps/app-frontend/src/App.vue index c85852fd5b..17f2a62fb9 100644 --- a/apps/app-frontend/src/App.vue +++ b/apps/app-frontend/src/App.vue @@ -202,7 +202,10 @@ watch( }, ) const forceSidebar = computed( - () => route.path.startsWith('/browse') || route.path.startsWith('/project'), + () => + route.path.startsWith('/browse') || + route.path.startsWith('/project') || + route.path.startsWith('/user'), ) const sidebarVisible = computed(() => sidebarToggled.value || forceSidebar.value) const hostingRouteActive = computed(() => route.path.startsWith('/hosting'))