fix: keep export dropdown open on save-failure branches too

GIF save-failure and MP4 save-failure paths had the same bug as the
export-failure paths: dropdown closes hiding the exportError UI. Now
keepExportDialogOpen = true in all non-smoke failure branches.
This commit is contained in:
webadderall
2026-04-20 22:20:51 +10:00
parent ce2f7147c4
commit 2df47c9c7e
@@ -236,6 +236,7 @@ export async function runEditorExport({
window.close();
return;
}
keepExportDialogOpen = true;
}
} else {
setExportError(result.error || "GIF export failed");
@@ -456,6 +457,7 @@ export async function runEditorExport({
window.close();
return;
}
keepExportDialogOpen = true;
}
} else {
if (smokeExportConfig.enabled) {