My App is updating a Database when OnChange is activated:
Patch('[dbo].[TBL_JS_GOODS_IN_CONTROLSHEET]', First(Filter('[dbo].[TBL_JS_GOODS_IN_CONTROLSHEET]',ID=SelectedItem.ID)),{DateDelivered:dtDateDelivered.SelectedDate, UpdatedBy:User().FullName,UpdatedOn: Now()});Set(Updated, true)
It all worked fine until I added a Trigger to the SQL Table being updated.
Now, my statement is flagged in red, with the error message:

I have now removed the Trigger from the DB, but my app is still broken. The error message persists, and my commands are still marked as invalid?