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(); };