Skip to content

Commit

Permalink
fix: max avg apr
Browse files Browse the repository at this point in the history
  • Loading branch information
lilchizh committed Mar 22, 2024
1 parent 679bf41 commit daa73f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/pools/PoolsList/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const PoolsList = () => {
tvlUSD: Number(totalValueLockedUSD),
volume24USD: Number(volumeUSD),
maxApr: poolsMaxApr[id] ? poolsMaxApr[id].toFixed(2) : 0,
avgApr: poolsMaxApr[id] ? poolsAvgApr[id].toFixed(2) : 0,
avgApr: poolsAvgApr[id] ? poolsAvgApr[id].toFixed(2) : 0,
})
);
}, [pools, poolsMaxApr, poolsAvgApr]);
Expand Down

0 comments on commit daa73f6

Please sign in to comment.