diff --git a/src/app/_guards/auth.guard.ts b/src/app/_guards/auth.guard.ts index a5bd7d5..d0af8b9 100644 --- a/src/app/_guards/auth.guard.ts +++ b/src/app/_guards/auth.guard.ts @@ -15,7 +15,6 @@ export class AuthGuard implements CanActivate { if (localStorage.getItem(btoa('CICADA_PRIVATE_KEY'))) { return true; } - console.log('authGuard: Hey you need a private key!') this.router.navigate(['/auth']); return false; }