From 213c819cfd29b113c8f07a4271c24ead6e9b94a9 Mon Sep 17 00:00:00 2001 From: Max Koon <22125083+k2on@users.noreply.github.com> Date: Mon, 20 Oct 2025 16:44:39 -0400 Subject: [PATCH] debug: add print --- shared/src/zql.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/shared/src/zql.ts b/shared/src/zql.ts index 45bbb86..d9162f2 100644 --- a/shared/src/zql.ts +++ b/shared/src/zql.ts @@ -3,6 +3,7 @@ import type { AuthData } from "./auth"; export function isLoggedIn( authData: AuthData | null, ): asserts authData is AuthData { + console.log("AUTHDATA", authData); if (!authData?.user.id) { throw new Error("User is not logged in"); }