diff --git a/docs/content/docs/concepts/cookies.mdx b/docs/content/docs/concepts/cookies.mdx index 1ba6dd3264..52eecdd68a 100644 --- a/docs/content/docs/concepts/cookies.mdx +++ b/docs/content/docs/concepts/cookies.mdx @@ -70,8 +70,8 @@ export const auth = betterAuth({ defaultCookieAttributes: { secure: true, httpOnly: true, - sameSite: "none", // Allows CORS-based cookie sharing across subdomains - partitioned: true // New browser standards will mandate this for foreign cookies + sameSite: "none", // Allows CORS-based cookie sharing across subdomains + partitioned: true, // New browser standards will mandate this for foreign cookies }, }, trustedOrigins: [ diff --git a/docs/content/docs/integrations/hono.mdx b/docs/content/docs/integrations/hono.mdx index b00c9fa5a5..afe16ab8e4 100644 --- a/docs/content/docs/integrations/hono.mdx +++ b/docs/content/docs/integrations/hono.mdx @@ -128,7 +128,7 @@ export const auth = createAuth({ defaultCookieAttributes: { sameSite: "none", secure: true, - partitioned: true // New browser standards will mandate this for foreign cookies + partitioned: true // New browser standards will mandate this for foreign cookies } } }) @@ -143,7 +143,7 @@ export const auth = createAuth({ sessionToken: { sameSite: "none", secure: true, - partitioned: true // New browser standards will mandate this for foreign cookies + partitioned: true // New browser standards will mandate this for foreign cookies } } }