Skip to content

Commit

Permalink
add description on UI for APY tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
akiraonstarknet committed May 19, 2024
1 parent ce4e6c5 commit 6791f62
Show file tree
Hide file tree
Showing 2 changed files with 460 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/components/Pools.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export default function Pools() {
return (
<Flex width={'100%'} key={split.title}>
<Text key="1" width={'70%'}>
{split.title}:
{split.title} {split.description ? `(${split.description})` : ''}
</Text>
<Text width={'30%'} textAlign={'right'} key="2">
{split.apr === 'Err' ? split.apr : (split.apr * 100).toFixed(2)}
Expand Down
Loading

0 comments on commit 6791f62

Please sign in to comment.