From 759dc5b50dddc832ed8a1ffe3786529b808eaf2e Mon Sep 17 00:00:00 2001 From: Rosano <1680612+rosano@users.noreply.github.com> Date: Wed, 18 Feb 2026 10:41:19 +0100 Subject: [PATCH] docs: fix account linking example (#8035) --- docs/content/docs/concepts/users-accounts.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/docs/concepts/users-accounts.mdx b/docs/content/docs/concepts/users-accounts.mdx index e5ad593c61..cb321748a3 100644 --- a/docs/content/docs/concepts/users-accounts.mdx +++ b/docs/content/docs/concepts/users-accounts.mdx @@ -368,7 +368,7 @@ Then whenever you retrieve back the account make sure to decrypt the tokens befo ### Account Linking -Account linking enables users to associate multiple authentication methods with a single account. With Better Auth, users can connect additional social sign-ons or OAuth providers to their existing accounts if the provider confirms the user's email as verified. +Account linking is [enabled by default](https://www.better-auth.com/docs/reference/options#accountlinking) and lets users associate multiple authentication methods with a single account. With Better Auth, users can connect additional social sign-ons or OAuth providers to their existing accounts if the provider confirms the user's email as verified. If account linking is disabled, no accounts can be linked, regardless of the provider or email verification status. @@ -376,7 +376,7 @@ If account linking is disabled, no accounts can be linked, regardless of the pro export const auth = betterAuth({ account: { accountLinking: { - enabled: true, + enabled: false, } }, });