remove stuff I forgot

This commit is contained in:
Nuckyz 2024-06-22 02:50:34 -03:00
parent 03120d5a98
commit 889eb311f9
No known key found for this signature in database
GPG key ID: 440BF8296E1C4AD9

View file

@ -531,7 +531,7 @@ export function extractAndLoadChunksLazy(code: string | string[], matcher: RegEx
}
if (rawChunkIds) {
const chunkIds = Array.from(rawChunkIds.matchAll(ChunkIdsRegex)).map((m: any) => m[1]);
const chunkIds = Array.from(rawChunkIds.matchAll(ChunkIdsRegex)).map(m => m[1]);
await Promise.all(chunkIds.map(id => wreq.e(id)));
}
@ -546,7 +546,7 @@ export function extractAndLoadChunksLazy(code: string | string[], matcher: RegEx
}
}
wreq(entryPointId as any);
wreq(entryPointId);
return true;
});