fix(web): 🐛 send 404 status code

ref #937
This commit is contained in:
Collin M. Barrett 2020-10-05 20:32:37 +00:00 committed by GitHub
parent a62e0771f0
commit 44a9180fc9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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} />
<Route path="*" component={NotFound} status={404} />
</Switch>
</div>
</Content>