Skip to content

Commit

Permalink
fix(web): missing hook dependency (lint)
Browse files Browse the repository at this point in the history
  • Loading branch information
schmanu committed Jan 6, 2025
1 parent 2dd64f1 commit b5e1f50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/src/components/common/TokenIcon/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const TokenIcon = ({
}): ReactElement => {
const src = useMemo(() => {
return logoUri?.replace(COINGECKO_THUMB, COINGECKO_SMALL)
}, [])
}, [logoUri])

return (
<ImageFallback
Expand Down

0 comments on commit b5e1f50

Please sign in to comment.