summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/core/utils/auth.js5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/core/utils/auth.js b/src/core/utils/auth.js
index 2ae5e05f..62eba2c0 100644
--- a/src/core/utils/auth.js
+++ b/src/core/utils/auth.js
@@ -10,10 +10,7 @@ const getAuth = () => {
}
const setAuth = (user) => {
- setCookie('auth', JSON.stringify(user), {
- sameSite: 'none',
- secure: true
- });
+ setCookie('auth', JSON.stringify(user));
return true;
}