In the application builder, add error handling ability when firing events. For example, on a form, where data fields are intended to be saved to a table when the user presses the submit button — if the data cannot be saved for some reason (i.e., it’s a field linked to another table, but only allows 1 value, but they have 2 selected), when they press submit, an error will popup as it tries to process the create row or update row event, but then the next event will fire normally. In my case that next event is a notification saying “Data Saved!” because it normally is.
I suggest an option to determine what happens if the event fails. Perhaps show an error message and stop processing, show a custom message, continue, etc.