From acaf971040be7983553cf5d315e16338512f8b7c Mon Sep 17 00:00:00 2001 From: Craig O'Donnell Date: Wed, 26 Jun 2024 17:20:01 -0400 Subject: [PATCH] remove unecessary console logs (#4711) --- web/src/features/Dashboard/api/getUpdates.ts | 1 - web/src/features/Dashboard/components/Dashboard.tsx | 1 - 2 files changed, 2 deletions(-) diff --git a/web/src/features/Dashboard/api/getUpdates.ts b/web/src/features/Dashboard/api/getUpdates.ts index 95c9d1d614..02ec3b7e6f 100644 --- a/web/src/features/Dashboard/api/getUpdates.ts +++ b/web/src/features/Dashboard/api/getUpdates.ts @@ -34,7 +34,6 @@ export const getCheckForUpdates = async ( // on the dashboard page it triggers getAppLicense here if (res.ok) { const response = await res.json(); - console.log(response, "res"); return response; } else { const text = await res.text(); diff --git a/web/src/features/Dashboard/components/Dashboard.tsx b/web/src/features/Dashboard/components/Dashboard.tsx index bbdfde37d7..7255e39fac 100644 --- a/web/src/features/Dashboard/components/Dashboard.tsx +++ b/web/src/features/Dashboard/components/Dashboard.tsx @@ -610,7 +610,6 @@ const Dashboard = () => { checkingForUpdates: true, checkingForUpdateError: false, }); - console.log("chiecking"); checkForUpdates(); };