1
0
Fork 0
mirror of synced 2024-06-26 18:10:51 +12:00

Show licensed group exceeded notification

This commit is contained in:
Rory Powell 2022-09-14 22:37:33 +01:00
parent 3697a4365b
commit 25282c9455

View file

@ -38,7 +38,11 @@
try {
await groups.actions.save(group)
} catch (error) {
notifications.error(`Failed to save group`)
if (error.status === 400) {
notifications.error(error.message)
} else {
notifications.error(`Failed to save group`)
}
}
}