diff --git a/src/components/layout/Navbar.vue b/src/components/layout/Navbar.vue index 7f609d8..ed743ae 100644 --- a/src/components/layout/Navbar.vue +++ b/src/components/layout/Navbar.vue @@ -28,13 +28,12 @@ const showProfileDialog = ref(false) const navigation = computed(() => [ { name: t('nav.home'), href: '/' }, { name: t('nav.events'), href: '/events' }, - { name: t('nav.support'), href: '/support' }, ]) // Compute total wallet balance const totalBalance = computed(() => { if (!auth.currentUser.value?.wallets) return 0 - + return auth.currentUser.value.wallets.reduce((total, wallet) => { return total + (wallet.balance_msat || 0) }, 0) @@ -76,14 +75,16 @@ const handleLogout = async () => {
- Logo + Logo {{ t('nav.title') }}