diff --git a/x-pack/plugins/observability_solution/slo/public/plugin.ts b/x-pack/plugins/observability_solution/slo/public/plugin.ts index b23084071b455..8711ca80ac9ce 100644 --- a/x-pack/plugins/observability_solution/slo/public/plugin.ts +++ b/x-pack/plugins/observability_solution/slo/public/plugin.ts @@ -215,15 +215,15 @@ export class SLOPlugin const createSLOFlyout = lazyWithContextProviders( lazy(() => import('./pages/slo_edit/shared_flyout/slo_add_form_flyout')), { spinnerSize: 'm' } - ), + ); plugins.discoverShared.features.registry.register({ id: 'observability-create-slo', - createSLOFlyout + createSLOFlyout, }); return { - getCreateSLOFlyout: createSLOFlyout + getCreateSLOFlyout: createSLOFlyout, }; }