Skip to content

Commit

Permalink
Fix type check issues
Browse files Browse the repository at this point in the history
  • Loading branch information
gsoldevila committed Nov 9, 2024
1 parent 1bc77a5 commit 6c57443
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@ export function createPluginStartContext<
navigateToApp: deps.application.navigateToApp,
navigateToUrl: deps.application.navigateToUrl,
getUrlForApp: deps.application.getUrlForApp,
isAppRegistered: deps.application.isAppRegistered,
currentLocation$: deps.application.currentLocation$,
},
customBranding: deps.customBranding,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ export const getDefaultServicesApplication = (
navigateToApp: async (app: string) => {
action(`Navigate to: ${app}`);
},
isAppRegistered: (appId: string) => true,
getUrlForApp: (url: string) => url,
capabilities: getDefaultCapabilities(),
applications$: of(applications),
Expand Down

0 comments on commit 6c57443

Please sign in to comment.