Skip to content

Commit 85367c7

Browse files
committed
Remove dev artifacts
1 parent bd6a370 commit 85367c7

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

src/wordpress-playground/index.tsx

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,6 @@ async function main() {
118118
}
119119

120120
if (prsToApply.length) {
121-
console.log('gb pr');
122121
const singlePrProgress = prsProgress / prsToApply.length;
123122
const prArtifacts: any[] = [];
124123
for (const pr of prsToApply) {
@@ -290,16 +289,7 @@ function downloadMany(
290289
);
291290
return null;
292291
}
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);
292+
return new File([await response.blob()], label);
303293
});
304294
}
305295
downloads.addEventListener('resolved', (e: any) => {

0 commit comments

Comments
 (0)