Display error when populated from the backend

This commit is contained in:
Adria Navarro 2023-05-08 11:53:14 +02:00
parent f59a9da809
commit 51f5f4c018
1 changed files with 5 additions and 1 deletions

View File

@ -130,9 +130,13 @@
try { try {
await groups.actions.save(group) await groups.actions.save(group)
} catch (error) { } catch (error) {
if (error.message) {
notifications.error(error.message)
} else {
notifications.error(`Failed to save user group`) notifications.error(`Failed to save user group`)
} }
} }
}
const removeUser = async id => { const removeUser = async id => {
await groups.actions.removeUser(groupId, id) await groups.actions.removeUser(groupId, id)