Skip to content

Commit

Permalink
Fix Warning: Unknown props location, computedMatch on <div> tag e…
Browse files Browse the repository at this point in the history
…rror message
  • Loading branch information
fernandomg committed Feb 26, 2018
1 parent 8feb7a5 commit 31a2ea3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/App.js
Expand Up @@ -33,15 +33,15 @@ class App extends Component {
deploymentStore.deploymentStep !== null ? (
<IncompleteDeploy />
) : (
<div>
<Switch>
<Route exact path="/" component={crowdsaleAddr ? Crowdsale : Home}/>
<Route exact path="/crowdsale" component={Crowdsale}/>
<Route exact path="/invest" component={Invest}/>
<Route exact path="/manage/:crowdsaleAddress" component={Manage}/>
<Route path="/1" component={stepOne}/>
<Route path="/2" component={stepTwo}/>
<Route path="/3" component={stepThree}/>
</div>
</Switch>
)
}
</Switch>
Expand Down

0 comments on commit 31a2ea3

Please sign in to comment.