Skip to content

Commit

Permalink
fix(worker): remove ugly log
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaume-chervet committed Mar 29, 2022
1 parent bb04b10 commit 62f6cd6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/context/src/oidc/vanilla/timer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@
return worker.port;
}
} catch (error)
{
console.log(error);
{
console.log("SharedWorker not available");
}
try {
if (Worker) {
Expand All @@ -79,7 +79,7 @@
}
} catch (error)
{
console.log(error);
console.log("Worker not available");
}

return null;
Expand Down

0 comments on commit 62f6cd6

Please sign in to comment.