Skip to content

Commit

Permalink
fix(suite): fix token row icons
Browse files Browse the repository at this point in the history
  • Loading branch information
MiroslavProchazka authored and mroz22 committed Oct 2, 2024
1 parent 7644107 commit 7dfede3
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ export const TokenRow = ({
}
/>
),
icon: 'HIDE',
icon: 'eyeSlash',
onClick: () =>
dispatch(
tokenDefinitionsActions.setTokenStatus({
Expand All @@ -266,7 +266,7 @@ export const TokenRow = ({
},
{
label: <Translation id="TR_VIEW_ALL_TRANSACTION" />,
icon: 'NEWSPAPER',
icon: 'newspaper',
onClick: () => {
dispatch({
type: SUITE.SET_TRANSACTION_HISTORY_PREFILL,
Expand All @@ -283,7 +283,7 @@ export const TokenRow = ({
},
{
label: <Translation id="TR_VIEW_IN_EXPLORER" />,
icon: 'EXTERNAL_LINK',
icon: 'arrowUpRight',
onClick: () => {
window.open(
getTokenExplorerUrl(network, token),
Expand Down

0 comments on commit 7dfede3

Please sign in to comment.