From 0c4dd9117584c25a42052817ba88eb88df1c89d4 Mon Sep 17 00:00:00 2001 From: Z User Date: Fri, 27 Mar 2026 22:55:38 +0000 Subject: [PATCH] Fix Auth0 domain: add .us. region prefix --- js/config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/config.js b/js/config.js index 5f02da5..3225153 100644 --- a/js/config.js +++ b/js/config.js @@ -6,9 +6,9 @@ const CONFIG = { // Auth0 Configuration auth0: { - domain: 'dev-t13zhs74oltgqtfxf.auth0.com', + domain: 'dev-t13zhs74oltgqtfx.us.auth0.com', clientId: 'YOUR_CLIENT_ID', // Replace with your Auth0 Client ID - audience: 'https://dev-t13zhs74oltgqtfxf.auth0.com/api/v2/', + audience: 'https://dev-t13zhs74oltgqtfx.us.auth0.com/api/v2/', redirectUri: window.location.origin + '/dashboard.html', logoutUri: window.location.origin },