1
0
Fork 0
mirror of synced 2024-06-29 11:31:06 +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 { try {
await groups.actions.save(group) await groups.actions.save(group)
} catch (error) { } catch (error) {
notifications.error(`Failed to save group`) if (error.status === 400) {
notifications.error(error.message)
} else {
notifications.error(`Failed to save group`)
}
} }
} }