Fix missing notification when refreshing preferences

This commit is contained in:
Bubka 2024-03-06 08:41:28 +01:00
parent 9519d5838c
commit 70f884270e

View File

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