Skip to content

Commit

Permalink
fix: unstage yarn and package files
Browse files Browse the repository at this point in the history
  • Loading branch information
winnieworld authored and honeymaro committed Feb 6, 2024
1 parent 7935ad6 commit bbf521c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 10 deletions.
22 changes: 13 additions & 9 deletions src/pages/Wallet/Assets.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -186,16 +186,20 @@ function Assets() {
align-items: center;
`}
>
<div
css={css`
white-space: nowrap;
word-break: break-all;
text-overflow: ellipsis;
overflow: hidden;
`}
<Link
to={`/tokens/${encodeURIComponent(`${row.token}`)}`}
>
{name}&nbsp;
</div>
<div
css={css`
white-space: nowrap;
word-break: break-all;
text-overflow: ellipsis;
overflow: hidden;
`}
>
{name}&nbsp;
</div>
</Link>
{row.symbol && (
<Typography
size={16}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Wallet/MobileAssetItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ function MobileAssetItem({
text-overflow: ellipsis;
`}
>
<Link to={`/tokens/${asset.token}`}>
<Link to={`/tokens/${encodeURIComponent(`${asset.token}`)}`}>
<HoverUnderline>{asset.name}</HoverUnderline>
</Link>
</Value>
Expand Down

0 comments on commit bbf521c

Please sign in to comment.