Revert "fix(web): 🐛 send 404 status code"

This reverts commit 44a9180fc9.
This commit is contained in:
Collin M. Barrett 2020-10-05 16:57:44 -05:00
parent 44a9180fc9
commit c9e63fe444

View file

@ -37,7 +37,7 @@ export const App: React.FC = () => (
<Switch>
<Route exact path="/" component={ListsTable} />
<Route path="/lists/*" component={ListsTable} />
<Route path="*" component={NotFound} status={404} />
<Route path="*" component={NotFound} />
</Switch>
</div>
</Content>