Skip to content

Commit

Permalink
fix getAPIOrEntryPointsDependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
amiryonatan committed Dec 18, 2023
1 parent e284b4b commit 3831877
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions src/repluggableAppDebug/repluggableAppDebug.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,17 +86,15 @@ export function setupDebugInfo({
shellInstallers,
performance: { options, trace, memoizedArr }
}: SetupDebugInfoParams) {
const apis = () => {
return Array.from(readyAPIs).map((apiKey: AnySlotKey) => {
return {
key: apiKey,
impl: () => getAPI(apiKey)
}
})
}

const utils = {
apis,
apis: () => {
return Array.from(readyAPIs).map((apiKey: AnySlotKey) => {
return {
key: apiKey,
impl: () => getAPI(apiKey)
}
})
},
unReadyEntryPoints: (): EntryPoint[] => getUnreadyEntryPoints(),
whyEntryPointUnready: (name: string) => {
const unreadyEntryPoint = _.find(
Expand Down

0 comments on commit 3831877

Please sign in to comment.