From 7dfede3956fcb5d7268b8e32d04aa5ab2dc5cb56 Mon Sep 17 00:00:00 2001 From: MiroslavProchazka Date: Wed, 2 Oct 2024 09:55:12 +0200 Subject: [PATCH] fix(suite): fix token row icons --- .../src/views/wallet/tokens/common/TokensTable/TokenRow.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/suite/src/views/wallet/tokens/common/TokensTable/TokenRow.tsx b/packages/suite/src/views/wallet/tokens/common/TokensTable/TokenRow.tsx index 36d57b0bc5f..317259bd4e2 100644 --- a/packages/suite/src/views/wallet/tokens/common/TokensTable/TokenRow.tsx +++ b/packages/suite/src/views/wallet/tokens/common/TokensTable/TokenRow.tsx @@ -250,7 +250,7 @@ export const TokenRow = ({ } /> ), - icon: 'HIDE', + icon: 'eyeSlash', onClick: () => dispatch( tokenDefinitionsActions.setTokenStatus({ @@ -266,7 +266,7 @@ export const TokenRow = ({ }, { label: , - icon: 'NEWSPAPER', + icon: 'newspaper', onClick: () => { dispatch({ type: SUITE.SET_TRANSACTION_HISTORY_PREFILL, @@ -283,7 +283,7 @@ export const TokenRow = ({ }, { label: , - icon: 'EXTERNAL_LINK', + icon: 'arrowUpRight', onClick: () => { window.open( getTokenExplorerUrl(network, token),