Commit 6f378b02 authored by Max Alekseenko's avatar Max Alekseenko

fix connect wallet message

parent 83fda2c9
...@@ -19,7 +19,7 @@ const MarketplaceAppAlert = ({ internalWallet, isWalletConnected }: Props) => { ...@@ -19,7 +19,7 @@ const MarketplaceAppAlert = ({ internalWallet, isWalletConnected }: Props) => {
icon = 'integration/full'; icon = 'integration/full';
text = 'Your wallet is connected with Blockscout'; text = 'Your wallet is connected with Blockscout';
status = 'success'; status = 'success';
} else if (isWalletConnected) { } else if (!internalWallet) {
icon = 'integration/partial'; icon = 'integration/partial';
text = 'Connect your wallet in the app below'; text = 'Connect your wallet in the app below';
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment