From b4068dc3bdbf811687613808454780f8aadee6c7 Mon Sep 17 00:00:00 2001 From: Lone Iversen <108085781+loivsen@users.noreply.github.com> Date: Thu, 4 Jul 2024 14:30:54 +0200 Subject: [PATCH] remove type --- .../src/packages/core/resources/resource.controller.ts | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/resources/resource.controller.ts b/src/Umbraco.Web.UI.Client/src/packages/core/resources/resource.controller.ts index 550993365e..b86d2568f7 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/core/resources/resource.controller.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/core/resources/resource.controller.ts @@ -4,15 +4,9 @@ import { isApiError, isCancelError, isCancelablePromise } from './apiTypeValidat import type { UmbControllerHost } from '@umbraco-cms/backoffice/controller-api'; import { UmbControllerBase } from '@umbraco-cms/backoffice/class-api'; import { UmbContextConsumerController } from '@umbraco-cms/backoffice/context-api'; -import { - UMB_NOTIFICATION_CONTEXT, - type UmbNotificationDefaultData, - type UmbNotificationOptions, -} from '@umbraco-cms/backoffice/notification'; +import { UMB_NOTIFICATION_CONTEXT, type UmbNotificationOptions } from '@umbraco-cms/backoffice/notification'; import type { UmbDataSourceResponse } from '@umbraco-cms/backoffice/repository'; -export type ErrorMessageText = { property: string; messages: string[] }; - export class UmbResourceController extends UmbControllerBase { #promise: Promise;