Skip to content

Commit

Permalink
Fix missing TVL on cbETH and wstETH (#1653)
Browse files Browse the repository at this point in the history
  • Loading branch information
DannyDelott authored Nov 14, 2024
1 parent fd25556 commit a24d82b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/hyperdrive-trading/src/ui/markets/PoolRow/PoolRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export function PoolRow({ hyperdrive }: PoolRowProps): ReactElement {
const isFiatSupported = !isTestnetChain(chainInfo.id);
const { fiatPrice } = useTokenFiatPrice({
chainId: baseToken.chainId,
tokenAddress: isFiatSupported ? hyperdrive.poolConfig.baseToken : undefined,
tokenAddress: isFiatSupported ? baseToken.address : undefined,
});
let tvlLabel = `${formatCompact({
value: presentValue || 0n,
Expand Down

0 comments on commit a24d82b

Please sign in to comment.