refactor: Comment out wallet balance display in Navbar for future adjustments

- Comment out the wallet balance display section in Navbar.vue to prepare for potential redesign or feature updates.
- Remove the border from the CurrencyDisplay component.
This commit is contained in:
padreug 2025-08-03 00:42:34 +02:00
parent 941b4c3ec5
commit 98bd504333
2 changed files with 7 additions and 7 deletions

View file

@ -95,11 +95,11 @@ const handleLogout = async () => {
<!-- Theme Toggle, Language, and Identity -->
<div class="flex items-center gap-2 lg:gap-4 xl:gap-6">
<!-- Wallet Balance Display -->
<div v-if="auth.isAuthenticated.value"
class="hidden sm:flex items-center gap-2 px-3 py-1 bg-muted/50 rounded-lg border">
<Wallet class="h-4 w-4 text-muted-foreground" />
<CurrencyDisplay :balance-msat="totalBalance" />
</div>
<!-- <div v-if="auth.isAuthenticated.value" -->
<!-- class="hidden sm:flex items-center gap-2 px-3 py-1 bg-muted/50 rounded-lg border"> -->
<!-- <Wallet class="h-4 w-4 text-muted-foreground" /> -->
<!-- <CurrencyDisplay :balance-msat="totalBalance" /> -->
<!-- </div> -->
<!-- Authentication Management -->
<div class="hidden sm:block">

View file

@ -1,5 +1,5 @@
<template>
<div class="flex items-center gap-1 bg-muted/30 rounded-lg p-1 border">
<div class="flex items-center gap-1 bg-muted/30 rounded-lg p-1">
<!-- Platinum -->
<div class="flex items-center gap-1 px-2 py-1 rounded bg-blue-900/50 border border-blue-700/30">
<div class="w-3 h-3 rounded-full bg-gradient-to-br from-slate-300 to-slate-500 border border-slate-400"></div>
@ -40,4 +40,4 @@ const currency = computed<EverQuestCurrency>(() => {
const satoshis = Math.floor(props.balanceMsat / 1000)
return satoshisToEverQuest(satoshis)
})
</script>
</script>