Skip to content

Commit 66a2e46

Browse files
committed
fix: added conditional to env
1 parent c26a925 commit 66a2e46

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/app/signin/contexts/sign-in-context.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export function SignInProvider({ children }: SignInProviderProps) {
6565
dispatch({ type: "fetch_start" });
6666

6767
try {
68-
const authenticatedUser = signInUser(api, user);
68+
const authenticatedUser = await signInUser(api, user);
6969

7070
await setCookie({
7171
user: JSON.stringify(authenticatedUser),

src/app/utils/cookies.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export async function setCookie({ user }: setCookieProps): Promise<void> {
1919
httpOnly: true,
2020
path: "/",
2121
secure: true,
22-
domain: "crud.shop",
22+
domain: process.env.NODE_ENV === 'production' ? "https://crud.shop" : "localhost",
2323
sameSite: "none",
2424
priority: "high",
2525
partitioned: false,

0 commit comments

Comments
 (0)