Skip to content

Commit

Permalink
Add div root wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
hugoattal committed Feb 8, 2024
1 parent 4b50490 commit d985810
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/histoire-plugin-vue/src/client/app/RenderStory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ export default _defineComponent({
)
}

// Wrap in Suspense to render async components
children.push(h(Suspense, {}, () => children.at(-1)))
children.push(h('div', children.at(-1)))
children.push(h(Suspense, {}, children.at(-1)))

return children.at(-1)
},
Expand Down

0 comments on commit d985810

Please sign in to comment.