Scattermapbox - markers do not appear

working to get a scattermapbox component setup in a react app. I can get the map to appear (open-street-map layer), but for the life of me, I can’t get the markers to show up. I’ve tried z-index, opacity, debug page and the lat lon points appear in the data. Am I missing something obvious? I also tried not defining markers to allow it to produce defaults- no dice. I’m not trying any unique symbols, just regular circles. Right now, just using basic data points as well. Thanks,

After fiddling a bit, I was able to resolve the issue:

From:

        lat: dataset.lat,
        lon: dataset.lon,

to:

        lat: [dataset.lat],
        lon: [dataset.lon],