Skip to content

Commit

Permalink
fix bootstrap error
Browse files Browse the repository at this point in the history
Signed-off-by: Hailong Cui <ihailong@amazon.com>
  • Loading branch information
Hailong-am committed Jul 3, 2024
1 parent b52737c commit 7e05a46
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/public/chrome/nav_group/nav_group_service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import { BehaviorSubject, combineLatest, Observable, ReplaySubject, Subscription } from 'rxjs';
import {
AppCategory,
ApplicationStart,
ChromeBreadcrumb,
ChromeNavGroup,
ChromeNavLink,
Expand All @@ -20,6 +19,7 @@ import {
getOrderedLinksOrCategories,
} from '../utils';
import { ChromeNavLinks } from '../nav_links';
import { InternalApplicationStart } from '../../application';

export const CURRENT_NAV_GROUP_ID = 'core.chrome.currentNavGroupId';

Expand Down Expand Up @@ -160,7 +160,7 @@ export class ChromeNavGroupService {
application,
}: {
navLinks: ChromeNavLinks;
application: ApplicationStart;
application: InternalApplicationStart;
}): Promise<ChromeNavGroupServiceStartContract> {
this.navLinks$ = navLinks.getNavLinks$();

Expand Down

0 comments on commit 7e05a46

Please sign in to comment.