Hi, I’ve encountered a really weird issue in my app. My components are suddenly disappearing from the pages. It’s strange because I can still see them in the component tree, but they’re not showing up on the page. It's not due to disabled conditions applied for the component, just all the components on the page disappeared and gives me a blank.
This issue affects all the pages starting from page 2, and when I navigate back to page 1, its components also disappear. I’m unable to proceed with my work on this app.
Are you hosted on cloud? This is a multipage app correct?
I can see you component tree has a number of components, and from your screenshot that there are some components on the current app page. Which components are missing?
If you clone the app are the components still missing?
My initial hunch is that the components might be accessing data from component's that are not visible.
This is a limitation that will prevent pages from directly sharing data with each other. But this can be solved by storing data in temporary JS variables so the data can exist outside the pages and be access independently.
This may also be true for queries that are being run inside a specific page, but not sure.