From 07f1419b7314923927d6f45e3d150259c8ed2424 Mon Sep 17 00:00:00 2001 From: Alec Rippberger Date: Thu, 26 Sep 2024 10:58:16 -0500 Subject: [PATCH] Add login-with-passkey route to desktop. --- apps/desktop/src/app/app-routing.module.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/desktop/src/app/app-routing.module.ts b/apps/desktop/src/app/app-routing.module.ts index fe3e27ea9f1..d3035ab4e0f 100644 --- a/apps/desktop/src/app/app-routing.module.ts +++ b/apps/desktop/src/app/app-routing.module.ts @@ -61,6 +61,10 @@ const routes: Routes = [ path: "login-with-device", component: LoginViaAuthRequestComponent, }, + { + path: "login-with-passkey", + component: LoginViaAuthRequestComponent, + }, { path: "admin-approval-requested", component: LoginViaAuthRequestComponent,