Skip to content

Commit

Permalink
refactor(background): Removes unnecessary console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
ERosendo committed Aug 28, 2024
1 parent 4a04e68 commit 345b160
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/utils/background_fetch.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,8 @@ const searchParamsURL = ({ base, params }) => {
async function waitUntil(promise) {
const keepAlive = setInterval(chrome.runtime.getPlatformInfo, 25 * 1000);
try {
console.log(true);
await promise;
} finally {
console.log('here clearing the interval');
clearInterval(keepAlive);
}
}
Expand Down

0 comments on commit 345b160

Please sign in to comment.