fix imports

This commit is contained in:
Mads Rasmussen
2024-09-30 21:26:33 +02:00
parent 72b29738d0
commit 51076e889b
2 changed files with 2 additions and 3 deletions

View File

@@ -1,7 +1,5 @@
import type { UmbEntityActionArgs } from '@umbraco-cms/backoffice/entity-action';
import { UmbEntityActionBase } from '@umbraco-cms/backoffice/entity-action';
import type { UmbControllerHost } from '@umbraco-cms/backoffice/controller-api';
import { UMB_CREATE_DICTIONARY_WORKSPACE_PATH_PATTERN } from '../../workspace/paths';
import { UMB_CREATE_DICTIONARY_WORKSPACE_PATH_PATTERN } from '../../workspace/index.js';
export class UmbCreateDictionaryEntityAction extends UmbEntityActionBase<never> {
override async execute() {

View File

@@ -0,0 +1 @@
export * from './paths.js';