diff --git a/src/Umbraco.Web.UI.Client/src/app/app.element.ts b/src/Umbraco.Web.UI.Client/src/app/app.element.ts index b9626187b8..63561c8543 100644 --- a/src/Umbraco.Web.UI.Client/src/app/app.element.ts +++ b/src/Umbraco.Web.UI.Client/src/app/app.element.ts @@ -9,9 +9,9 @@ import { UUIIconRegistryEssential } from '@umbraco-ui/uui'; import { css, html } from 'lit'; import { customElement, property } from 'lit/decorators.js'; -import { UmbAuthFlow } from '../core/auth/auth-flow'; import { UmbIconStore } from '../core/stores/icon/icon.store'; import type { UmbErrorElement } from '../error/error.element'; +import { UmbAuthFlow } from './auth/auth-flow'; import { UMB_APP, UmbAppContext } from './app.context'; import type { Guard, UmbRoute } from '@umbraco-cms/backoffice/router'; import { pathWithoutBasePath } from '@umbraco-cms/backoffice/router'; diff --git a/src/Umbraco.Web.UI.Client/src/core/auth/auth-flow.ts b/src/Umbraco.Web.UI.Client/src/app/auth/auth-flow.ts similarity index 100% rename from src/Umbraco.Web.UI.Client/src/core/auth/auth-flow.ts rename to src/Umbraco.Web.UI.Client/src/app/auth/auth-flow.ts