From 3cb6863e27afdbbef8dc5e5077de1536f1330172 Mon Sep 17 00:00:00 2001 From: 1aishwaryasharma <1aishwaryasharma@gmail.com> Date: Fri, 7 Nov 2025 22:19:28 -0600 Subject: [PATCH] fix: fixed spelling for localAuthenticationOptions is incorrect in Auth0Options interface --- src/types/common.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/common.ts b/src/types/common.ts index cfc54a12..94b020e8 100644 --- a/src/types/common.ts +++ b/src/types/common.ts @@ -93,7 +93,7 @@ export type User = { export interface Auth0Options { /** Your Auth0 application's domain. e.g., 'your-tenant.us.auth0.com' */ domain: string; - LocalAuthenticationOptions?: LocalAuthenticationOptions; + localAuthenticationOptions?: LocalAuthenticationOptions; /** Your Auth0 application's client ID. */ clientId: string; timeout?: number;