From 4b82cca3bf74853ae3a5b1314c2c2026cd647d19 Mon Sep 17 00:00:00 2001 From: Prospector <6166773+Prospector@users.noreply.github.com> Date: Wed, 12 Aug 2026 17:25:26 -0700 Subject: [PATCH] fix sidebar not showing on user pages (#7097) * fix sidebar not showing on user pages * prepr --- apps/app-frontend/src/App.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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'))