From 215d69a59cd1b8fb078f4a02ce7f5c6402fea6d3 Mon Sep 17 00:00:00 2001 From: Mads Rasmussen Date: Thu, 4 Jul 2024 21:08:07 +0200 Subject: [PATCH] fix imports --- .../history/current-user-history-user-profile-app.element.ts | 2 +- .../src/packages/user/user/collection/repository/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/packages/user/current-user/history/current-user-history-user-profile-app.element.ts b/src/Umbraco.Web.UI.Client/src/packages/user/current-user/history/current-user-history-user-profile-app.element.ts index 7f87f38104..f09ad28b8a 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/user/current-user/history/current-user-history-user-profile-app.element.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/user/current-user/history/current-user-history-user-profile-app.element.ts @@ -1,5 +1,5 @@ import type { UmbCurrentUserHistoryItem, UmbCurrentUserHistoryStore } from './current-user-history.store.js'; -import { UMB_CURRENT_USER_HISTORY_STORE_CONTEXT } from './current-user-history.store.js'; +import { UMB_CURRENT_USER_HISTORY_STORE_CONTEXT } from './current-user-history.store.token.js'; import { html, customElement, state, map, ifDefined, css } from '@umbraco-cms/backoffice/external/lit'; import { UmbLitElement } from '@umbraco-cms/backoffice/lit-element'; import { UmbTextStyles } from '@umbraco-cms/backoffice/style'; diff --git a/src/Umbraco.Web.UI.Client/src/packages/user/user/collection/repository/index.ts b/src/Umbraco.Web.UI.Client/src/packages/user/user/collection/repository/index.ts index 8573b08457..23b6472e8e 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/user/user/collection/repository/index.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/user/user/collection/repository/index.ts @@ -1,2 +1,2 @@ -export { UMB_USER_COLLECTION_REPOSITORY_ALIAS } from './manifests.js'; +export { UMB_USER_COLLECTION_REPOSITORY_ALIAS } from './constants.js'; export { UmbUserCollectionRepository } from './user-collection.repository.js';