Builder is not loading UI until I publish page

Builder content link
Builder.io: Visual Development Platform

Builder public api key
ebc07e82cd70430e8ffd042a5929785b

What are you trying to accomplish
I want to add Text/Buttons/Images to Blog Article but the UI is not responding. When I drag and drop i.e. Text to Blog Article the UI doesn’t respond but in the Layers tab I can see that Text has been added to my component. When I publish those changes, the changes are live and in that moment UI of builder becomes responsive, I can see my changes.

Screenshots or video link
Video Upload & Annotation - Gemoo

Code stack you are integrating Builder with
NextJS

Reproducible code example
I’ve tried with includeUnpublished: true, but didn’t resolve the issue. Here is my code:
const content = await builder
.get(“blog-article”, {
prerender: false,
// Include references, like the author ref
options: {includeRefs: true},
query: {
// Get the specific article by handle
//@ts-ignore
“data.handle”: props?.params?.handle.toLowerCase(),
},
})
.toPromise();