Skip to content

Commit

Permalink
fix: merge
Browse files Browse the repository at this point in the history
  • Loading branch information
0xKheops committed Dec 10, 2024
1 parent 6bc2496 commit 0ed8311
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export const useCombineBittensorStakeInfo = ({ address, balances }: CombineBitte
title: getLockTitle({ label: "subtensor-staking" }),
description: validatorsForAddress?.[index]?.name,
tokens: BigNumber(formattedStakedAmount),
fiat: Number(formattedStakedAmount) * (tokenRates?.[selectedCurrency] ?? 0),
fiat: Number(formattedStakedAmount) * (tokenRates?.[selectedCurrency]?.price ?? 0),
locked: true,
// only show address when we're viewing balances for all accounts
address: address ? undefined : addr,
Expand Down

0 comments on commit 0ed8311

Please sign in to comment.