Skip to content

Commit

Permalink
Remove dev artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
adamziel committed Feb 5, 2023
1 parent bd6a370 commit 85367c7
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions src/wordpress-playground/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ async function main() {
}

if (prsToApply.length) {
console.log('gb pr');
const singlePrProgress = prsProgress / prsToApply.length;
const prArtifacts: any[] = [];
for (const pr of prsToApply) {
Expand Down Expand Up @@ -290,16 +289,7 @@ function downloadMany(
);
return null;
}
console.log('pre blob');
let blob;
try {
blob = await response.blob();
} catch (e) {
console.log(e);
throw e;
}
console.log({ blob });
return new File([blob], label);
return new File([await response.blob()], label);
});
}
downloads.addEventListener('resolved', (e: any) => {
Expand Down

0 comments on commit 85367c7

Please sign in to comment.