[#839] Show total balance on Home screen (#840)

- balance on the home screen is not a total instead of verified one
This commit is contained in:
Lukas Korba 2023-10-04 11:03:47 +02:00 committed by GitHub
parent c98ec53940
commit e1a5fa9778
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ extension HomeView {
Button {
viewStore.send(.updateDestination(.balanceBreakdown))
} label: {
Text(L10n.balance(viewStore.shieldedBalance.data.verified.decimalString(), tokenName))
Text(L10n.balance(viewStore.shieldedBalance.data.total.decimalString(), tokenName))
.font(
.custom(FontFamily.Inter.regular.name, size: 32)
.weight(.bold)