fix: remove comma

This commit is contained in:
Michael Brevard 2024-04-10 10:02:39 +03:00 committed by GitHub
parent 503b560d9b
commit 2df20ac681
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -50,7 +50,7 @@ export const createLazyNetworkClientPage = (componentLoader: Component) => {
idleHandle = null
}
})
return () => isIdle.value ? h(componentLoader, attrs) : null,
return () => isIdle.value ? h(componentLoader, attrs) : null
},
})
}