chore(react): lowering the timeout for the ionpage check to avoid false positives

This commit is contained in:
Ely Lucas
2019-11-07 13:21:23 -07:00
parent 3e14a57f84
commit 13b323f25d

View File

@ -178,7 +178,7 @@ class RouteManager extends React.Component<RouteComponentProps, RouteManagerStat
if (view!.routeData.match!.url !== location.pathname) {
console.warn('No IonPage was found to render. Make sure you wrap your page with an IonPage component.');
}
}, 1000);
}, 100);
}
}
}