Text box formatting

In my airtable database, I have a column labeled Color. I have a value stored in that column which is aMahogany With Red Notes. When I display it in retool component, it displays as A Mahogany With Red Notes.

Here is the data in Airtable:

Here is what is returned form the API call:
image

Here is the display in Retool:

image

I think this is a case of Retool deciding that the column type indicates that the item value should be start cased. If you look at the column setting for Color, does the mapped value show {{ _.startCase(item) }}?

If so, just get rid of the whole line or replace it with {{item}} to be sure it doesn't revert later