From 157975249fade2ee0b9366c8d6cf38351ab4e1f3 Mon Sep 17 00:00:00 2001 From: sara Date: Thu, 11 Jan 2024 15:43:57 -0300 Subject: [PATCH] fix: build correctly --- src/components/WalletWidget/Balance.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/WalletWidget/Balance.tsx b/src/components/WalletWidget/Balance.tsx index 75382af..7264647 100644 --- a/src/components/WalletWidget/Balance.tsx +++ b/src/components/WalletWidget/Balance.tsx @@ -18,7 +18,7 @@ export const Balance = () => { } }; - const decimals: string = 6; + const decimals = 6; const balanceInt = Math.floor(Number(intToDecimal(balance, decimals)));