1
0
Fork 0
mirror of synced 2024-09-12 07:27:20 +12:00

Improve Automations Error Message

This commit is contained in:
Gerard Burns 2023-04-27 13:33:22 +01:00
parent 1b815c363a
commit 8d6c00644a
2 changed files with 4 additions and 1 deletions

View file

@ -147,6 +147,9 @@ const automationActions = store => ({
testData,
})
if (!result?.trigger && !result?.steps?.length) {
if (result?.err?.code === "usage_limit_exceeded") {
throw "You have exceeded your automation quota"
}
throw "Something went wrong testing your automation"
}
store.update(state => {

View file

@ -52,7 +52,7 @@
await automationStore.actions.test($selectedAutomation, testData)
$automationStore.showTestPanel = true
} catch (error) {
notifications.error("Error testing automation")
notifications.error(error)
}
}
</script>