Fix missing notification when refreshing preferences

This commit is contained in:
Bubka 2024-03-06 08:41:28 +01:00
parent 9519d5838c
commit 70f884270e
1 changed files with 1 additions and 0 deletions

View File

@ -141,6 +141,7 @@ export const useUserStore = defineStore({
})
})
.catch(error => {
const notify = useNotifyStore()
notify.alert({ text: trans('errors.data_cannot_be_refreshed_from_server') })
})
}