Skip to content

Commit

Permalink
fix: remove extra forward slash from sidebar send asset button tooltip (
Browse files Browse the repository at this point in the history
  • Loading branch information
kieranroneill authored Dec 23, 2023
1 parent 95d2d98 commit 4c30e29
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/extension/components/SideBar/SideBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -232,9 +232,7 @@ const SideBar: FC = () => {
<SideBarActionItem
icon={IoSendOutline}
label={t<string>('labels.sendAsset', {
nativeCurrency: network?.nativeCurrency.code
? `${network?.nativeCurrency.code}/`
: '',
nativeCurrency: network?.nativeCurrency.code,
})}
onClick={handleSendAssetClick}
/>
Expand Down

0 comments on commit 4c30e29

Please sign in to comment.