From 27a2d64f50bbbdd2de3bf481c002915f25189a54 Mon Sep 17 00:00:00 2001 From: Jacob Overgaard <752371+iOvergaard@users.noreply.github.com> Date: Tue, 24 Jan 2023 10:33:04 +0100 Subject: [PATCH] do not import auth component in backoffice app --- src/Umbraco.Web.UI.Client/src/app.ts | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/app.ts b/src/Umbraco.Web.UI.Client/src/app.ts index 386294ca18..514f5a6f35 100644 --- a/src/Umbraco.Web.UI.Client/src/app.ts +++ b/src/Umbraco.Web.UI.Client/src/app.ts @@ -10,7 +10,6 @@ import '@umbraco-ui/uui-modal-dialog'; import '@umbraco-ui/uui-modal-sidebar'; import 'element-internals-polyfill'; import 'router-slot'; -import './auth'; import type { Guard, IRoute } from 'router-slot/model'; @@ -42,11 +41,7 @@ export class UmbApp extends UmbLitElement { private umbracoUrl?: string; @state() - private _routes: IRoute[] = [ - { - path: 'login', - component: () => import('./auth/login/login.element'), - }, + private _routes: IRoute[] = [ { path: 'install', component: () => import('./installer/installer.element'),