From 7c070d98f5234a5d0bcb6784d7e374817084cc47 Mon Sep 17 00:00:00 2001 From: seyyednavid hejazijouybari Date: Fri, 27 Oct 2023 20:41:51 +0100 Subject: [PATCH] Remove console.log for checking server_URL on app component --- client/src/App.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/App.js b/client/src/App.js index 04dcc5c256..c7dcca1759 100644 --- a/client/src/App.js +++ b/client/src/App.js @@ -28,7 +28,7 @@ const App = () => { setIsLoading(false); } }; - console.log(process.env.REACT_APP_SERVERURL); + useEffect(() => { getAllVideos(order); }, [order]);