diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/hint/context/hint.context-token.ts b/src/Umbraco.Web.UI.Client/src/packages/core/hint/context/hint.context-token.ts index 5649e78018..f85498b378 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/core/hint/context/hint.context-token.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/core/hint/context/hint.context-token.ts @@ -1,4 +1,4 @@ -import type { UmbHintController } from './hints.controller.js'; +import type { UmbHintController } from './hint.controller.js'; import { UmbContextToken } from '@umbraco-cms/backoffice/context-api'; export const UMB_HINT_CONTEXT = new UmbContextToken('UmbHintContext'); diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/hint/context/hints.context.ts b/src/Umbraco.Web.UI.Client/src/packages/core/hint/context/hint.context.ts similarity index 97% rename from src/Umbraco.Web.UI.Client/src/packages/core/hint/context/hints.context.ts rename to src/Umbraco.Web.UI.Client/src/packages/core/hint/context/hint.context.ts index 3a9875d47c..7d381dcecd 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/core/hint/context/hints.context.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/core/hint/context/hint.context.ts @@ -1,6 +1,6 @@ import type { UmbHint, UmbIncomingHintBase } from '../types.js'; import { UMB_HINT_CONTEXT } from './hint.context-token.js'; -import { UmbHintController, type UmbHintControllerArgs } from './hints.controller.js'; +import { UmbHintController, type UmbHintControllerArgs } from './hint.controller.js'; import type { UmbPartialSome } from '@umbraco-cms/backoffice/utils'; import type { UmbControllerHost } from '@umbraco-cms/backoffice/controller-api'; diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/hint/context/hints.controller.ts b/src/Umbraco.Web.UI.Client/src/packages/core/hint/context/hint.controller.ts similarity index 100% rename from src/Umbraco.Web.UI.Client/src/packages/core/hint/context/hints.controller.ts rename to src/Umbraco.Web.UI.Client/src/packages/core/hint/context/hint.controller.ts diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/hint/context/index.ts b/src/Umbraco.Web.UI.Client/src/packages/core/hint/context/index.ts index 9523595c70..df3deea0fd 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/core/hint/context/index.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/core/hint/context/index.ts @@ -1,3 +1,3 @@ export * from './hint.context-token.js'; -export * from './hints.context.js'; -export * from './hints.controller.js'; +export * from './hint.context.js'; +export * from './hint.controller.js';