chore: pass ZoneLoading error as result

This commit is contained in:
Jan Laupetin
2025-10-11 19:04:47 +01:00
parent 098be53559
commit b27b7e77bd
9 changed files with 181 additions and 121 deletions
+2 -2
View File
@@ -12,8 +12,8 @@ async function onOpenFastfileClick() {
loadingFastFile.value = true;
webviewBinds.loadFastFile(lastPath.value)
.catch((e) => {
console.error("Failed to load fastfile", e);
.catch((e: string) => {
console.error("Failed to load fastfile:", e);
})
.finally(() => {
loadingFastFile.value = false;