We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a0fd7a8 + eab3a86 commit 1e865baCopy full SHA for 1e865ba
src/components/monaco-query-field/MonacoQueryFieldLazy.tsx
@@ -1,13 +1,14 @@
1
import React, { Suspense } from 'react';
2
3
+import MonacoQueryField from './MonacoQueryField';
4
import { Props } from './MonacoQueryFieldProps';
5
-const Field = React.lazy(() => import(/* webpackChunkName: "prom-query-field" */ './MonacoQueryField'));
6
+// const Field = React.lazy(() => import('./MonacoQueryField'));
7
8
export const MonacoQueryFieldLazy = (props: Props) => {
9
return (
10
<Suspense fallback={null}>
- <Field {...props} />
11
+ <MonacoQueryField {...props} />
12
</Suspense>
13
);
14
};
0 commit comments