We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd6a370 commit 85367c7Copy full SHA for 85367c7
src/wordpress-playground/index.tsx
@@ -118,7 +118,6 @@ async function main() {
118
}
119
120
if (prsToApply.length) {
121
- console.log('gb pr');
122
const singlePrProgress = prsProgress / prsToApply.length;
123
const prArtifacts: any[] = [];
124
for (const pr of prsToApply) {
@@ -290,16 +289,7 @@ function downloadMany(
290
289
);
291
return null;
292
293
- console.log('pre blob');
294
- let blob;
295
- try {
296
- blob = await response.blob();
297
- } catch (e) {
298
- console.log(e);
299
- throw e;
300
- }
301
- console.log({ blob });
302
- return new File([blob], label);
+ return new File([await response.blob()], label);
303
});
304
305
downloads.addEventListener('resolved', (e: any) => {
0 commit comments