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 f1473ec commit 8011811Copy full SHA for 8011811
src/App.tsx
@@ -57,9 +57,7 @@ export function App() {
57
const handleDownloadAll = useCallback(async () => {
58
const completedImages = images.filter((img) => img.status === "complete");
59
60
- for (let i = 0; i < completedImages.length; i++) {
61
- const image = completedImages[i];
62
-
+ for (const image of completedImages) {
63
if (image.blob && image.outputType) {
64
const link = document.createElement("a");
65
link.href = URL.createObjectURL(image.blob);
0 commit comments