Skip to content

Commit

Permalink
show zero balance when account=none instead of spinners
Browse files Browse the repository at this point in the history
  • Loading branch information
brenzi committed May 4, 2024
1 parent 493e220 commit cdafec7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/Header/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@

<NuxtLink class="text-link paragraph_smll">
<span class="gradient gradient_two">Paseo Balance</span>
<div v-if="isFetchingPaseoBalance" class="spinner"></div>
<div v-if="isFetchingPaseoBalance && accountStore.getShortAddress != 'none'" class="spinner"></div>
<div v-else>{{ accountStore.getPaseoHumanBalance }}</div>
</NuxtLink>

<NuxtLink class="text-link paragraph_smll">
<span class="gradient gradient_one">Incognitee Balance</span>
<div v-if="isFetchingIncogniteeBalance" class="spinner"></div>
<div v-if="isFetchingIncogniteeBalance && accountStore.getShortAddress != 'none'" class="spinner"></div>
<div v-else>{{ accountStore.getIncogniteeHumanBalance }}</div>
</NuxtLink>

Expand Down

0 comments on commit cdafec7

Please sign in to comment.