The purpose of the FeatureTable I am building is to display unedited data from a public source. According to the documentation, leaving the fieldConfigs blank will autocast all of the fields which is exactly the behavior I want.

Here is my super simple code:
const featureTable = new FeatureTable({
view: view,
layer: layer,
container: "viewDiv",
});And all I'm getting is the table header:

How can I get the columns to Autocast?