From 51b0cdb5f45f8fcf53e1ac10e64139772094dcd3 Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Mon, 31 Jan 2022 16:08:51 +0700 Subject: [PATCH] Fix version to be proper value (#891) Signed-off-by: Andrey Sobolev --- plugins/workbench/src/index.ts | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/plugins/workbench/src/index.ts b/plugins/workbench/src/index.ts index a647786b6d..2e944199fb 100644 --- a/plugins/workbench/src/index.ts +++ b/plugins/workbench/src/index.ts @@ -13,12 +13,10 @@ // limitations under the License. // -import type { IntlString, Asset, Plugin, Metadata } from '@anticrm/platform' -import type { Ref, Class, Doc, Obj, Space, Mixin, Data, Version } from '@anticrm/core' - -import type { AnyComponent } from '@anticrm/ui' - +import type { Class, Doc, Mixin, Obj, Ref, Space } from '@anticrm/core' +import type { Asset, IntlString, Metadata, Plugin } from '@anticrm/platform' import { plugin } from '@anticrm/platform' +import type { AnyComponent } from '@anticrm/ui' /** * @public @@ -94,6 +92,6 @@ export default plugin(workbenchId, { WorkbenchApp: '' as AnyComponent }, metadata: { - RequiredVersion: '' as Metadata> + RequiredVersion: '' as Metadata } })