fix(install ui): stop loading on error

This commit is contained in:
DecDuck
2025-01-19 15:44:00 +11:00
parent 9a184a8f35
commit d83aae6dc4

View File

@ -326,12 +326,12 @@ async function install() {
gameVersion: versionOptions.value[installVersionIndex.value].versionName,
installDir: installDir.value,
});
installLoading.value = false;
installFlowOpen.value = false;
} catch (error) {
installError.value = (error as string).toString();
}
installLoading.value = false;
}
async function launch() {