summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAndrej Mihajlov <and@mullvad.net>2018-08-08 11:20:29 +0200
committerAndrej Mihajlov <and@mullvad.net>2018-08-08 16:25:34 +0200
commitd42bc9d261ecec2bb213d44323fb385d67eacc71 (patch)
tree22afda2ea1882a5ee5a3febe934f80b73b89551a
parent727da34b50262ae15c0bf360ebf1b40a702b01c4 (diff)
downloadmullvadvpn-d42bc9d261ecec2bb213d44323fb385d67eacc71.tar.xz
mullvadvpn-d42bc9d261ecec2bb213d44323fb385d67eacc71.zip
Remove old $FlowFixMe that are fixed now after upgrade to Flow 0.78
-rw-r--r--app/routes.js5
1 files changed, 0 insertions, 5 deletions
diff --git a/app/routes.js b/app/routes.js
index 37c6398cac..107ee616be 100644
--- a/app/routes.js
+++ b/app/routes.js
@@ -39,7 +39,6 @@ export default function makeRoutes(
// example: <PublicRoute path="/" component={ MyComponent } />
const PublicRoute = ({ component, ...otherProps }) => {
return (
- // $FlowFixMe: This has been fixed in Flow 0.71
<Route
{...otherProps}
render={(routeProps) => {
@@ -53,7 +52,6 @@ export default function makeRoutes(
// example: <PrivateRoute path="/protected" component={ MyComponent } />
const PrivateRoute = ({ component, ...otherProps }) => {
return (
- // $FlowFixMe: This has been fixed in Flow 0.71
<Route
{...otherProps}
render={(routeProps) => {
@@ -75,7 +73,6 @@ export default function makeRoutes(
// example: <LoginRoute path="/login" component={ MyComponent } />
const LoginRoute = ({ component, ...otherProps }) => {
return (
- // $FlowFixMe: This has been fixed in Flow 0.71
<Route
{...otherProps}
render={(routeProps) => {
@@ -97,7 +94,6 @@ export default function makeRoutes(
// example: <LaunchRoute path="/" component={ MyComponent } />
const LaunchRoute = ({ component, ...otherProps }) => {
return (
- // $FlowFixMe: This has been fixed in Flow 0.71
<Route
{...otherProps}
render={(routeProps) => {
@@ -116,7 +112,6 @@ export default function makeRoutes(
let previousRoute: ?string;
return (
- // $FlowFixMe: This has been fixed in Flow 0.71
<Route
render={({ location }) => {
const toRoute = location.pathname;