Skip to content

Commit dba3879

Browse files
committed
chore: Formatted codebase
1 parent 36b4088 commit dba3879

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

libs/mf-runtime/src/lib/loader/dynamic-federation.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ export async function loadRemoteEntry(
8888
export async function loadRemoteEntry(
8989
remoteEntryOrOptions: string | LoadRemoteEntryOptions,
9090
remoteName?: string,
91-
nonce?: string
91+
nonce?: string,
9292
): Promise<void> {
9393
if (typeof remoteEntryOrOptions === 'string') {
9494
const remoteEntry = remoteEntryOrOptions;
@@ -98,7 +98,7 @@ export async function loadRemoteEntry(
9898
return await loadRemoteScriptEntry(
9999
options.remoteEntry,
100100
options.remoteName,
101-
options.nonce
101+
options.nonce,
102102
);
103103
} else if (remoteEntryOrOptions.type === 'module') {
104104
const options = remoteEntryOrOptions;
@@ -121,7 +121,7 @@ async function loadRemoteModuleEntry(remoteEntry: string): Promise<void> {
121121
async function loadRemoteScriptEntry(
122122
remoteEntry: string,
123123
remoteName: string,
124-
nonce?: string
124+
nonce?: string,
125125
): Promise<void> {
126126
return new Promise<void>((resolve, reject) => {
127127
// Is remoteEntry already loaded?

0 commit comments

Comments
 (0)