Unable to see some DataProvider values in Studio

What have you tried so far? (please link relevant docs and other forum posts)

Hi! I am unable to see some values in studio.

For example, from our _app.tsx we can’t view the appData object

      <ThemeProvider>
        <DataProvider name="appData" data={allData}>
          <main className={fontSans.variable}>
            <Component {...pageProps} />
          </main>
        </DataProvider>
      </ThemeProvider>

This is in our GlobalAuthContext and while we can access accessToken in the live app, we can’t see the values in studio. The same applies to pii and user

  <GlobalActionsProvider contextName="GlobalAuthContext" actions={actions}>
      <DataProvider name="auth" data={{ user, pii, accessToken }}>
        {isLoading ? <div>Loading auth state...</div> : children}
      </DataProvider>
    </GlobalActionsProvider>

Thank you in advance

Relevant links:

Hi @aihe_team, the appData object should be visible in the data picker, if the context is available. For example, when I open the data picker for a text element dynamic value, I see it at the bottom in your project.

hi @samuel_pullman :blush:

Again, I’m very grateful for your assistance. You are right! The object is visible is it the values that isn’t. For example appData.query is blank or even or auth.user or auth.pii are all blank in studio though the values exist.