Seemed to have fixed it

This commit is contained in:
KevinWh0 2024-02-16 19:01:54 +01:00
parent 441523b6d4
commit 6240f78c83

View file

@ -107,12 +107,19 @@ export function promiseDialog<T extends Promise<any>>(
showing.value = false;
if (onFailure) {
onFailure(err);
} else {
if (err.message) {
alert({
type: 'error',
text: err.message,
});
} else {
alert({
type: 'error',
text: err,
});
}
}
});
// NOTE: dynamic importすると挙動がおかしくなる(showingの変更が伝播しない)