Skip to content

Commit

Permalink
Fix Balance hover effect console error
Browse files Browse the repository at this point in the history
  • Loading branch information
louilinn committed Oct 10, 2023
1 parent 586e228 commit 5125da5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/BalanceDisplay.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ const BalanceDisplay = ({ underlineAtHover = true }) => {
<CircularProgress />
) : (
<Typography
className={underlineAtHover && classes.balanceHover}
className={underlineAtHover ? classes.balanceHover : ''}
variant="balance1"
>
<Link to={TOKENS_PATH}>
Expand Down

0 comments on commit 5125da5

Please sign in to comment.