Skip to content

Commit

Permalink
chore: remove a debug console log
Browse files Browse the repository at this point in the history
  • Loading branch information
bsilkyn committed May 13, 2024
1 parent 989e989 commit 30a3f1f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion frontend/src/router/guards/authentication.guard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ export async function AuthenticationGuard(to: RouteLocationNormalized): Promise<
const { refreshUser } = useAuthStore();
const { intent, isAuthenticated } = storeToRefs(useAuthStore());

console.log(to.name as string);
if (!isAuthenticated.value && !['login', 'verify'].includes(to.name as string)) {
try {
await refreshUser();
Expand Down

0 comments on commit 30a3f1f

Please sign in to comment.