Skip to content

Commit a32c183

Browse files
authored
Password not working when Notion embed - Fixed (#360)
1 parent b41d6c0 commit a32c183

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/pages/forms/[slug]/index.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ const openCompleteForm = ref(null)
7171
const passwordEntered = function (password) {
7272
const cookie = useCookie('password-' + slug, {
7373
maxAge: 60 * 60 * 7,
74-
sameSite: false,
74+
sameSite: 'none',
7575
secure: true
7676
})
7777
cookie.value = sha256(password)

0 commit comments

Comments
 (0)