Skip to content

Commit

Permalink
add console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
cp-20 committed Dec 27, 2023
1 parent 7bc9c26 commit 693f6e8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions apps/server/src/middleware/supabase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ export const supabaseMiddleware: MiddlewareHandler<{
return getCookie(c as Context, key);
},
set: (key, value, options) => {
console.log(key, value);

// eslint-disable-next-line @typescript-eslint/no-unsafe-argument -- 知らんけど
setCookie(c, key, value, options);
},
Expand Down

0 comments on commit 693f6e8

Please sign in to comment.