Hello Plasmic friends! We’re working on some fun stuff with GlobalVaraints and codegen. Providers like the following, with value={undefined}, are inserted around our pages. We setup these providers in our code, higher up the tree… this requires us to manually remove these providers from each new page published. Otherwise the undefined value is always used.
<MyGlobalVariantContext.Provider value={undefined}>
...
</MyGlobalVariantContext.Provider>
Are we doing something weird here? I got excited when I found wrapPagesWithGlobalContexts in plamsic.json… but this seems to affect <GlobalContextsProvider>
only. Any chance there is a way to prevent these contexts with value={undefined] from being written in published pages?