From: abias Date: Sun, 21 May 2023 18:41:41 +0000 (-0400) Subject: Remove console logs X-Git-Url: http://these/git/%7B%60/feeds/all.xml?a=commitdiff_plain;h=a8e2b43952c3add257e0c7cef49bdffe6e93bacf;p=lemmy-ui.git Remove console logs --- diff --git a/src/shared/components/common/error-guard.tsx b/src/shared/components/common/error-guard.tsx index 1877188..3012154 100644 --- a/src/shared/components/common/error-guard.tsx +++ b/src/shared/components/common/error-guard.tsx @@ -12,11 +12,8 @@ class ErrorGuard extends Component { 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 ; } else { return this.props.children;