Skip to content

Commit

Permalink
remove unecessary console logs (#4711)
Browse files Browse the repository at this point in the history
  • Loading branch information
Craig O'Donnell authored Jun 26, 2024
1 parent 809da88 commit acaf971
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion web/src/features/Dashboard/api/getUpdates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
1 change: 0 additions & 1 deletion web/src/features/Dashboard/components/Dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -610,7 +610,6 @@ const Dashboard = () => {
checkingForUpdates: true,
checkingForUpdateError: false,
});
console.log("chiecking");
checkForUpdates();
};

Expand Down

0 comments on commit acaf971

Please sign in to comment.