From 35bdd1ddf97734a01aad96d4bfd559fcf8979bac Mon Sep 17 00:00:00 2001 From: Thomas Neirynck Date: Thu, 18 Nov 2021 12:31:26 -0500 Subject: [PATCH] fix imports --- x-pack/plugins/maps/public/render_app.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/x-pack/plugins/maps/public/render_app.tsx b/x-pack/plugins/maps/public/render_app.tsx index 372ea444326d8..7d76f019104d7 100644 --- a/x-pack/plugins/maps/public/render_app.tsx +++ b/x-pack/plugins/maps/public/render_app.tsx @@ -10,7 +10,7 @@ import { render, unmountComponentAtNode } from 'react-dom'; import { Router, Switch, Route, Redirect, RouteComponentProps } from 'react-router-dom'; import { i18n } from '@kbn/i18n'; import type { AppMountParameters } from 'kibana/public'; -import { KibanaThemeProvider } from '../../kibana_react/public'; +import { KibanaThemeProvider } from '../../../../src/plugins/kibana_react/public'; import { getCoreChrome, getCoreI18n, @@ -63,7 +63,7 @@ function setAppChrome() { } export async function renderApp( - { element, history, onAppLeave, setHeaderActionMenu }: AppMountParameters, + { element, history, onAppLeave, setHeaderActionMenu, theme$ }: AppMountParameters, AppUsageTracker: React.FC ) { goToSpecifiedPath = (path) => history.push(path); @@ -109,7 +109,7 @@ export async function renderApp( render( - +