fix 404 handling in main dialog

This commit is contained in:
pa
2026-01-26 15:05:19 +09:00
committed by Natsumi
parent 27f913552e
commit 0a3597f84e
6 changed files with 22 additions and 11 deletions

View File

@@ -845,7 +845,7 @@ export const useUserStore = defineStore('User', () => {
})
.catch((err) => {
D.loading = false;
D.visible = false;
uiStore.closeMainDialog();
toast.error(t('message.user.load_failed'));
throw err;
})