diff options
| author | Dhravya Shah <[email protected]> | 2025-01-23 19:05:33 -0700 |
|---|---|---|
| committer | Dhravya Shah <[email protected]> | 2025-01-23 19:05:33 -0700 |
| commit | 12b26382094c0faf27bfb94ec50564e966a22993 (patch) | |
| tree | 1841c3a6d59dd662e3c065422fe01ba4937008be /apps/backend/src/auth.ts | |
| parent | import tools: CSV and markdown (obsidian) (diff) | |
| download | supermemory-chunking-and-retrieval.tar.xz supermemory-chunking-and-retrieval.zip | |
De duplication and updating chunkschunking-and-retrieval
Diffstat (limited to 'apps/backend/src/auth.ts')
| -rw-r--r-- | apps/backend/src/auth.ts | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/apps/backend/src/auth.ts b/apps/backend/src/auth.ts index b66bba39..206624d3 100644 --- a/apps/backend/src/auth.ts +++ b/apps/backend/src/auth.ts @@ -93,7 +93,6 @@ export const auth = async ( }; const session = await getSessionFromRequest(c.req.raw, context); - console.log("Session", session); c.set("session", session); if (session?.user?.id) { @@ -129,7 +128,6 @@ export const auth = async ( user = Array.isArray(user) ? user[0] : user; c.set("user", user); - console.log("User", user); } } } |