From d0c489588a93dc27fa6bc73affc41b8361c4e632 Mon Sep 17 00:00:00 2001 From: Khiet Tam Nguyen <86177399+nktnet1@users.noreply.github.com> Date: Sun, 2 Mar 2025 18:15:30 +1100 Subject: [PATCH] docs: consistent indents with space instead of tabs (#1620) --- docs/content/docs/concepts/cookies.mdx | 4 ++-- docs/content/docs/integrations/hono.mdx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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 } } }