From 8b0058ada072fecc59dae1421d199576cd339177 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Thu, 4 Jul 2024 12:58:25 +0200 Subject: [PATCH] detect RAC differently Signed-off-by: Jens Langhammer --- web/src/user/LibraryApplication/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/user/LibraryApplication/index.ts b/web/src/user/LibraryApplication/index.ts index 30475dd981..b96e8428ef 100644 --- a/web/src/user/LibraryApplication/index.ts +++ b/web/src/user/LibraryApplication/index.ts @@ -90,7 +90,7 @@ export class LibraryApplication extends AKElement { if (!this.application) { return html``; } - if (this.application?.launchUrl === "goauthentik.io://providers/rac/launch") { + if (this.application?.providerObj.component === "ak-provider-rac-form") { return html` ${this.application.name} `;