Skip to content

Commit

Permalink
Revert "Hack to fix 404 errors when installing as Chrome web app on A…
Browse files Browse the repository at this point in the history
…ndroid"

This reverts commit eb8860d.
  • Loading branch information
abraha2d committed Jul 30, 2018
1 parent d410473 commit 361cbdd
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/containers/App/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/

import React from "react";
import { Redirect, Route, Switch } from "react-router-dom";
import { Switch, Route } from "react-router-dom";

import SecuredRoute from "containers/SecuredRoute";

Expand All @@ -18,7 +18,6 @@ export default function App() {
return (
<Switch>
<Route exact path="/login" component={LoginPage} />
<Route exact path="///" render={() => <Redirect to="/" />} />
<SecuredRoute path="/" component={HomePage} />
</Switch>
);
Expand Down

0 comments on commit 361cbdd

Please sign in to comment.