From b7635584cce45905e25ab27c0c16a0e4f1f11d67 Mon Sep 17 00:00:00 2001 From: Vladislav Makhov Date: Wed, 10 Feb 2021 13:32:46 +0300 Subject: [PATCH] web: people: remove console log --- products/ASC.People/Client/src/App.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/products/ASC.People/Client/src/App.js b/products/ASC.People/Client/src/App.js index 3d8d954811..91390b08d4 100644 --- a/products/ASC.People/Client/src/App.js +++ b/products/ASC.People/Client/src/App.js @@ -47,7 +47,6 @@ const App = (props) => { useEffect(() => { try { - console.log("loadBaseInfo call"); loadBaseInfo(); } catch (err) { toastr.error(err); @@ -55,7 +54,6 @@ const App = (props) => { }, []); useEffect(() => { - console.log("App People render", isLoaded); if (isLoaded) utils.updateTempContent(); }, [isLoaded]);