Remove console logs

This commit is contained in:
abias 2023-05-21 14:41:41 -04:00
parent e542aa872d
commit a8e2b43952
1 changed files with 0 additions and 3 deletions

View File

@ -12,11 +12,8 @@ class ErrorGuard extends Component<any, any> {
render() {
const errorPageData = this.isoData.errorPageData;
const siteRes = this.isoData.site_res;
console.log("In error guard");
console.log(errorPageData);
if (errorPageData || !siteRes) {
console.log("triggered error page");
return <ErrorPage />;
} else {
return this.props.children;