[autofix.ci] apply automated fixes

This commit is contained in:
autofix-ci[bot] 2024-06-09 20:08:02 +00:00 committed by GitHub
parent b9e7354241
commit 79a805fa8c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -86,8 +86,8 @@ export const createLazyNetworkClientPage = (componentLoader: Component) => {
idleHandle = null
}
})
return () => h('div', {}, [
isIdle.value ? h(componentLoader, attrs) : (instance.vnode.el && nuxt.isHydrating) ? createVNode(createStaticVNode(getFragmentHTML(instance.vnode.el ?? null, true)?.join('') || '', 1)) : null
return () => h('div', {}, [
isIdle.value ? h(componentLoader, attrs) : (instance.vnode.el && nuxt.isHydrating) ? createVNode(createStaticVNode(getFragmentHTML(instance.vnode.el ?? null, true)?.join('') || '', 1)) : null,
])
},
})