I have an app that Collects data from a local Gateway SQL table into a Powerapps collection. When I try to add a new row to the collection, I get an error that the data types do not match.

I have narrowed it down to a date field. If I export the app and view the JSON Entities file, it shows me that when I collect from SQL, the date field has a data type of "lowercase d". However, when I try to Collect and add a new row to the collection, the data type is "uppercase D". I have tried many things... changing the datatype in SQL from datetime to: date, datetime2, and dateoffset. On the PowerApps side, I have tried using the date control's SelectedDate, using a string, using the DateValue of a string. Obviously the string won't work, but the other two both have a data type of "uppercase D".

When trying to update from Collection inside of PowerApps, this is the data type:

I cannot get anything to update the collection. What am I missing or not understanding?
Any help is greatly appreciated.