None of our pages are displayed and editable

We are noticing our pages are not rendering except 1 page. Not only does it not render from the final published url but also the content in the editor is showing blank.

The only page that is being displayed in the /blog . The equivalent final url is Thirsty JSon

Empty page (image below)

The equivalent page that is not published Thirsty JSon

Hey, @ThirstyJSON , to get started please share your Public API Key. You can find instructions for finding it at this link. Let me know if you need any assistance.

@sheema , thank you for replying to help us. We figured out the problem. In our app.jsx, we had incorrectly set the route path to /blog

<Route path="/blog" element={<BuilderPage />}></Route>

we have now changed to , after which all the pages are working.

<Route path="*" element={<BuilderPage />}></Route>

Thank you for your prompt response.

1 Like