diff --git a/plugins/devmodel-resources/src/index.ts b/plugins/devmodel-resources/src/index.ts index 76e55468bd..96ad228883 100644 --- a/plugins/devmodel-resources/src/index.ts +++ b/plugins/devmodel-resources/src/index.ts @@ -33,7 +33,6 @@ import { getMetadata, IntlString, Resources } from '@hcengineering/platform' import view from '@hcengineering/view' import workbench from '@hcengineering/workbench' import ModelView from './components/ModelView.svelte' -import QueryView from './components/QueryView.svelte' import devmodel from './plugin' export interface TxWitHResult { @@ -177,8 +176,7 @@ export function toIntl (value: string): IntlString { export default async (): Promise => ({ component: { - ModelView, - QueryView + ModelView }, hook: { Hook diff --git a/plugins/devmodel/src/index.ts b/plugins/devmodel/src/index.ts index 4e6060b21d..6e658d1af7 100644 --- a/plugins/devmodel/src/index.ts +++ b/plugins/devmodel/src/index.ts @@ -29,7 +29,6 @@ export default plugin(devModelId, { }, component: { ModelView: '' as AnyComponent, - QueryView: '' as AnyComponent, TransactionView: '' as AnyComponent, NotificationsView: '' as AnyComponent },