We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51f27ec commit bdbbe25Copy full SHA for bdbbe25
1 file changed
x-pack/platform/plugins/shared/spaces/public/solution_view_switch/components/modal/index.ts
@@ -5,4 +5,8 @@
5
* 2.0.
6
*/
7
8
-export { SolutionViewSwitchModal } from './solution_view_switch_modal';
+import { dynamic } from '@kbn/shared-ux-utility';
9
+
10
+export const SolutionViewSwitchModal = dynamic(() =>
11
+ import('./solution_view_switch_modal').then((mod) => ({ default: mod.SolutionViewSwitchModal }))
12
+);
0 commit comments