BuilderComponent symbol data reference binding

Hey @radikris I set up what I think is an approximation of your setup and was able to get it working…the piece you are missing is to spread the value into hero.value:

 <BuilderComponent
            model="hero"
            options={{
              query: '47854896424f4ae499952e68dc539a59',
              key: 'tophero',
              includeRefs: true,
              noTraverse: false,
            }}
            data={{
              hero: {
                value: {...tophero},
              },
              locale: locale,
            }}
          />

Even though the correct values were showing in the state inspector, for whatever reason it didnt seem to register it correctly, but spreading the values in was able to read and render as expected for me. Try it out and see if this works on your end as well, hopefully I set up my demo correctly!