Skip to content

Commit

Permalink
Fix issue from resolving merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
jloleysens committed Apr 21, 2020
1 parent 07fdb89 commit 9638dbf
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { documentationService, uiMetricService, apiService, breadcrumbService }
import { renderApp } from '.';

export async function mountManagementSection(
{ http, getStartServices }: CoreSetup,
{ http, getStartServices, notifications }: CoreSetup,
params: ManagementAppMountParams
) {
const { element, setBreadcrumbs } = params;
Expand All @@ -28,7 +28,7 @@ export async function mountManagementSection(
metric: uiMetricService,
documentation: documentationService,
api: apiService,
notifications: coreSetup.notifications,
notifications,
};

return renderApp(element, I18nContext, services, { http });
Expand Down

0 comments on commit 9638dbf

Please sign in to comment.