Skip to content

Commit

Permalink
fix: remote manifest url
Browse files Browse the repository at this point in the history
  • Loading branch information
steven-pribilinskiy committed Jun 18, 2023
1 parent b0a8c64 commit 168847f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/helpers/downloadTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ export async function downloadRemoteEntryURLsFromManifests(remoteManifestUrls?:
remoteEntryURLs[remoteManifest.scope] = remoteManifest.url;
});
} else {
Object.entries(manifestUrls as RemoteEntryUrls).forEach(([appName, url]) => {
remoteEntryURLs[toCamelCase(appName)] = isValidUrl(url) ? url : `${artifactsBaseUrl}/${url}`;
Object.entries(remotesManifest as RemoteEntryUrls).forEach(([appName, url]) => {
remoteEntryURLs[toCamelCase(appName)] = isValidUrl(url) ? url : `${artifactsBaseUrl}/${appName}/${url}`;
});
}
} else {
Expand Down

0 comments on commit 168847f

Please sign in to comment.