Skip to content

Commit

Permalink
merge fix
Browse files Browse the repository at this point in the history
Signed-off-by: MarcoMandar <[email protected]>
  • Loading branch information
MarcoMandar committed Jul 11, 2024
1 parent dfdf9a0 commit 50bb42d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
</h3>
<div class="inline-flex items-baseline gap-2">
<span v-if="isConnected" class="text-4xl font-bold">
{{ trancateUserBalance(registratorStore.totalLockedTokens) }}
{{ formatEther(registratorStore.totalLockedTokens || '0') }}
</span>
<span v-if="!isConnected" class="text-4xl font-bold"> -- </span>
<Ticker />
Expand Down Expand Up @@ -99,7 +99,7 @@
<h3>Claimed rewards</h3>
<div class="inline-flex items-baseline gap-2">
<span v-if="isConnected" class="text-4xl font-bold">
{{ trancateUserBalance(facilitatorStore.totalClaimedTokens) }}
{{ formatEther(facilitatorStore.totalClaimedTokens || '0') }}
</span>
<span v-if="!isConnected" class="text-4xl font-bold"> -- </span>
<Ticker />
Expand All @@ -110,8 +110,8 @@
<div class="inline-flex items-baseline gap-2">
<span v-if="isConnected" class="text-4xl font-bold">
{{
trancateUserBalance(
facilitatorStore.avaliableAllocatedTokens
formatEther(
facilitatorStore.avaliableAllocatedTokens || '0'
)
}}
</span>
Expand Down

0 comments on commit 50bb42d

Please sign in to comment.