Skip to content

Commit

Permalink
Merge pull request #26 from rnsdomains/fix-no-metamask
Browse files Browse the repository at this point in the history
Can search and resolve with no metamask
  • Loading branch information
ilanolkies authored Jul 18, 2019
2 parents 469d633 + cc2d485 commit 4a4d39c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ const Routes = (props) => {
<Switch>
<Route exact path="/" component={HomeTab} />
<Route path="/setup" component={SetUpTab} />
<Route path="/search" component={SearchTab} />
<Route path="/resolve" component={ResolveTab} />
{
!window.ethereum && !viewMyCrypto && <Route component={NoMetamaskTab} />
}
<Route path="/user" component={viewMyCrypto ? NoMetamaskTab : UserTab} />
<Route path="/search" component={SearchTab} />
<Route path="/resolve" component={ResolveTab} />
<Route path="/start" component={StartAuctionTab} />
<Route path="/bid" component={BidTab} />
<Route path="/unseal" component={UnsealTab} />
Expand Down

0 comments on commit 4a4d39c

Please sign in to comment.