From a32c183758591730c077c786eb4c6f70ed9352ea Mon Sep 17 00:00:00 2001 From: formsdev <136701234+formsdev@users.noreply.github.com> Date: Fri, 22 Mar 2024 18:50:30 +0530 Subject: [PATCH] Password not working when Notion embed - Fixed (#360) --- client/pages/forms/[slug]/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/pages/forms/[slug]/index.vue b/client/pages/forms/[slug]/index.vue index 098ac531..3c3eb0c6 100644 --- a/client/pages/forms/[slug]/index.vue +++ b/client/pages/forms/[slug]/index.vue @@ -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)