From b39f08f745fa0f8bfdc642969484c006f9991ccb Mon Sep 17 00:00:00 2001 From: Jacob Overgaard <752371+iOvergaard@users.noreply.github.com> Date: Wed, 25 Jan 2023 10:41:55 +0100 Subject: [PATCH] update import paths --- src/Umbraco.Web.UI.Client/libs/store/store-base.ts | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/libs/store/store-base.ts b/src/Umbraco.Web.UI.Client/libs/store/store-base.ts index 97430508ce..0c640fe58e 100644 --- a/src/Umbraco.Web.UI.Client/libs/store/store-base.ts +++ b/src/Umbraco.Web.UI.Client/libs/store/store-base.ts @@ -1,11 +1,8 @@ -import { UmbContextProviderController } from "../context-api/provide/context-provider.controller"; -import { UmbControllerHostInterface } from "../controller/controller-host.mixin"; +import { UmbContextProviderController } from '@umbraco-cms/context-api'; +import { UmbControllerHostInterface } from '@umbraco-cms/controller'; export class UmbStoreBase { - - - constructor (protected _host: UmbControllerHostInterface, public readonly storeAlias: string) { + constructor(protected _host: UmbControllerHostInterface, public readonly storeAlias: string) { new UmbContextProviderController(_host, storeAlias, this); } - }