From 64acba3bd596b2c154d3cc279010614711b0f1d9 Mon Sep 17 00:00:00 2001 From: Marius Mather Date: Fri, 17 Jul 2026 08:41:31 +1000 Subject: [PATCH] chore: update Galaxy launch URL to Auth0 --- src/app/pages/user/profile/profile.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/pages/user/profile/profile.component.ts b/src/app/pages/user/profile/profile.component.ts index 64906fb5..2b238a2a 100644 --- a/src/app/pages/user/profile/profile.component.ts +++ b/src/app/pages/user/profile/profile.component.ts @@ -367,7 +367,7 @@ export class ProfileComponent implements OnInit { const normalizedBase = launchUrl.endsWith('/') ? launchUrl : `${launchUrl}/`; - const loginEndpoint = `${normalizedBase}authnz/oidc/login`; + const loginEndpoint = `${normalizedBase}authnz/auth0/login`; this.httpClient .get<{ redirect_uri?: string }>(loginEndpoint)