Skip to content

Commit

Permalink
Merge pull request #3209 from thematters/fix/connect-wallet-typo
Browse files Browse the repository at this point in the history
[hotfix - master] fix(wallet): fix unable to connect wallet for new user by #3107
  • Loading branch information
robertu7 authored Feb 22, 2023
2 parents ad89dd4 + a17123d commit 488991e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/Me/Settings/ConnectWallet/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const ConnectWallet = () => {
const initStep = 'wallet-select'
const { currStep, forward } = useStep<Step>(initStep)

if (!viewerEthAddress) {
if (viewerEthAddress) {
return (
<Layout.Main smBgColor="grey-lighter">
<Head title={{ id: 'loginWithWallet' }} />
Expand Down

0 comments on commit 488991e

Please sign in to comment.