Your page did not connect to the builder in time.
Editing a page in the Makeswift Visual Builder requires your page to establish a connection with the builder. This message means that your page did not initialize this connection in time.
Possible ways to fix this
Runtime v0.24 and later
In v0.24 and later, the connection is automatically initiated by the
ReactRuntimeProvider. Make sure you have correctly rendered the
ReactRuntimeProvider and are passing a correct value for the previewMode (in
v0.24) or siteVersion (in v0.25+) prop. For more details, see our
installation guides:
Runtime v0.23 and earlier
For v0.23 and earlier, the connection is initiated by the DraftModeScript or
PreviewModeScript components for App Router and Pages Router, respectively.
This message indicates that these components are likely missing from your page.
App Router
Make sure you have added the DraftModeScript component to the <head> of your
page by rendering it in the root layout.
Pages Router
Make sure you have added the PreviewModeScript component to the <Head> of the
page by extending the custom document.