Skip to content

Commit

Permalink
Removed console.info output
Browse files Browse the repository at this point in the history
  • Loading branch information
atrincas committed Dec 31, 2024
1 parent 742ff52 commit b9272e1
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions client/src/components/session-checker/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ export default function SessionChecker() {
() => isPrivatePath(pathname) && !!session?.accessToken,
[session?.accessToken, pathname],
);
console.info("queryEnabled", queryEnabled);
console.info("session", session);
const { error } = client.auth.validateToken.useQuery(
queryKey,
{
Expand All @@ -41,7 +39,6 @@ export default function SessionChecker() {
enabled: queryEnabled,
},
);
console.info("error", error);

useEffect(() => {
if (error && isPrivatePath(pathname)) {
Expand Down

0 comments on commit b9272e1

Please sign in to comment.