Minor fixes

This commit is contained in:
Frikky
2026-02-11 11:41:13 +01:00
parent 3671c63d52
commit a889bec917
4 changed files with 37 additions and 7 deletions
+1 -1
View File
@@ -107,7 +107,7 @@ const SetAuthentication = (props) => {
// Set the orgsession to be a cookie for __session cookie
setTimeout(() => {
document.cookie = "__session=" + orgsession + "; path=/; max-age=1800"; // Cookie expires in 30 min
document.cookie = "__session=" + orgsession + "; path=/; max-age=1800; SameSite=Lax"; // Cookie expires in 30 min
}, 1000)
}