We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c26a925 commit 66a2e46Copy full SHA for 66a2e46
src/app/signin/contexts/sign-in-context.tsx
@@ -65,7 +65,7 @@ export function SignInProvider({ children }: SignInProviderProps) {
65
dispatch({ type: "fetch_start" });
66
67
try {
68
- const authenticatedUser = signInUser(api, user);
+ const authenticatedUser = await signInUser(api, user);
69
70
await setCookie({
71
user: JSON.stringify(authenticatedUser),
src/app/utils/cookies.ts
@@ -19,7 +19,7 @@ export async function setCookie({ user }: setCookieProps): Promise<void> {
19
httpOnly: true,
20
path: "/",
21
secure: true,
22
- domain: "crud.shop",
+ domain: process.env.NODE_ENV === 'production' ? "https://crud.shop" : "localhost",
23
sameSite: "none",
24
priority: "high",
25
partitioned: false,
0 commit comments