(fix): redirect to step 1 when install resume fails instead of blank page

This commit is contained in:
Jake Barnby
2026-03-25 02:07:47 +13:00
parent a92ad3aa8b
commit 74adda8e77
@@ -1074,7 +1074,9 @@
if (existingInstallId) {
resumeInstall(existingInstallId).then((resumed) => {
if (!resumed) {
startFreshInstall();
clearInstallId?.();
clearInstallLock?.();
window.location.href = '/?step=1';
}
});
} else {