Skip to content

Commit

Permalink
Move not-found route to bottom of router
Browse files Browse the repository at this point in the history
  • Loading branch information
aweiksnar committed Dec 10, 2015
1 parent 6148a7f commit 5eeefd5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions app/router.cjsx
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,9 @@ module.exports =
</Route>

<Route path="todo" component={-> <div className="content-container"><i className="fa fa-cogs"></i> TODO</div>} />
<Route path="*" component={require './pages/not-found'} />

<Route path="dev/workflow-tasks-editor" component={require './components/workflow-tasks-editor'} />
<Route path="dev/classifier" component={require './classifier'} />
<Route path="dev/aggregate" component={require './components/aggregate-view'} />
<Route path="dev/ribbon" component={require './components/classifications-ribbon'} />
<Route path="*" component={require './pages/not-found'} />
</Route>

0 comments on commit 5eeefd5

Please sign in to comment.