Password not working when Notion embed - Fixed (#360)

This commit is contained in:
formsdev 2024-03-22 18:50:30 +05:30 committed by GitHub
parent b41d6c0e60
commit a32c183758
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ const openCompleteForm = ref(null)
const passwordEntered = function (password) {
const cookie = useCookie('password-' + slug, {
maxAge: 60 * 60 * 7,
sameSite: false,
sameSite: 'none',
secure: true
})
cookie.value = sha256(password)