diff --git a/client/src/helpers/Auth.js b/client/src/helpers/Auth.js index 4ac9a659..3f17bc63 100644 --- a/client/src/helpers/Auth.js +++ b/client/src/helpers/Auth.js @@ -11,8 +11,8 @@ import { toast } from "react-toastify"; export const setCookie = (key, value) => { if (typeof window !== "undefined") { cookie.set(key, value, { - domain: 'matrix-lab-client.vercel.app', - sameSite: 'none', + domain: "matrix-lab-client.vercel.app", + sameSite: "none", secure: true, }); }