Skip to content

Commit

Permalink
try changing cookie sameSite
Browse files Browse the repository at this point in the history
  • Loading branch information
chickzilla committed Nov 1, 2024
1 parent e9641c3 commit 355cdd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/api/src/trpc/trpc.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export class TrpcService {
readonly jwtCookieOptions: CookieOptions = {
httpOnly: true,
secure: true,
sameSite: 'strict',
sameSite: 'none',
};
trpc = initTRPC.context<Context>().create();
router = this.trpc.router;
Expand Down

0 comments on commit 355cdd2

Please sign in to comment.