diff --git a/frontend/app.vue b/frontend/app.vue index bfa818a..4c5b2c0 100644 --- a/frontend/app.vue +++ b/frontend/app.vue @@ -101,7 +101,7 @@ const showDesktopTitleBar = computed(() => isDesktop.value) const showSidebar = computed(() => { const path = String(route.path || '') - if (path === '/') return false + if (path === '/' || path === '/import') return false if (path === '/decrypt' || path === '/detection-result' || path === '/decrypt-result') return false return !(path === '/wrapped' || path.startsWith('/wrapped/')) }) diff --git a/frontend/pages/detection-result.vue b/frontend/pages/detection-result.vue index 2711968..9649dee 100644 --- a/frontend/pages/detection-result.vue +++ b/frontend/pages/detection-result.vue @@ -1,5 +1,5 @@