From 72d63b6e0fb19eb08c4f2d5935aa9d2bc29a4a31 Mon Sep 17 00:00:00 2001 From: Edi Simetzberger Date: Thu, 9 Oct 2025 17:51:53 +0200 Subject: [PATCH] docs(options): fix redirectURI casing in socialProviders examples (#5156) --- docs/content/docs/reference/options.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/docs/reference/options.mdx b/docs/content/docs/reference/options.mdx index ccf6a9c0..6bf425b6 100644 --- a/docs/content/docs/reference/options.mdx +++ b/docs/content/docs/reference/options.mdx @@ -220,12 +220,12 @@ export const auth = betterAuth({ google: { clientId: "your-client-id", clientSecret: "your-client-secret", - redirectUri: "https://example.com/api/auth/callback/google" + redirectURI: "https://example.com/api/auth/callback/google" }, github: { clientId: "your-client-id", clientSecret: "your-client-secret", - redirectUri: "https://example.com/api/auth/callback/github" + redirectURI: "https://example.com/api/auth/callback/github" } }, })