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

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)