diff --git a/frontend/src/components/HeaderMain.vue b/frontend/src/components/HeaderMain.vue index ae82434..da4c31f 100644 --- a/frontend/src/components/HeaderMain.vue +++ b/frontend/src/components/HeaderMain.vue @@ -23,6 +23,7 @@ /> + @@ -72,7 +73,6 @@ watchEffect(() => { const settingsMenu = (e: Event) => { // show the context menu const items = [] - items.push({ label: 'Gallery', onClick: () => store.gallery = !store.gallery }) if (store.user.isLoggedIn) { items.push({ label: `Logout ${store.user.username ?? ''}`, onClick: () => store.logout() }) } else {