bug fixes

This commit is contained in:
Noah Zinsmeister 2019-04-15 14:09:46 -04:00
parent fff0718404
commit b2d753d6bb
No known key found for this signature in database
GPG Key ID: 83022DD49188C9F2
2 changed files with 4 additions and 6 deletions

@ -13,8 +13,6 @@ function getEtherscanLink(tx) {
return `https://etherscan.io/tx/${tx}`
}
console.log(ethers)
class Web3Status extends Component {
state = {
isShowingModal: false

@ -44,16 +44,16 @@ class App extends Component {
</MediaQuery>
<Web3Connect />
<BrowserRouter>
<Switch>
<div className="app__wrapper">
<div className="app__wrapper">
<Switch>
<Route exact path="/swap" component={Swap} />
<Route exact path="/send" component={Send} />
<Route exact path="/add-liquidity" component={Pool} />
<Route exact path="/remove-liquidity" component={Pool} />
<Route exact path="/create-exchange/:tokenAddress?" component={Pool} />
<Redirect exact from="/" to="/swap" />
</div>
</Switch>
</Switch>
</div>
</BrowserRouter>
</div>
)