with jsx, Two <KeepAlive> nested will report an error `Uncaught (in promise) TypeError: parentComponent.ctx.deactivate is not a function`
Version
3.2.31
Reproduction link
Steps to reproduce
run -> click switch button -> click switch button again -> update Comp1.tsx file
What is expected?
hmr works fine
What is actually happening?
got error
runtime-core.esm-bundler.js:5483
Uncaught (in promise) TypeError: parentComponent.ctx.deactivate is not a function
app.tsx
<KeepAlive>
<KeepAlive>
{showNoExcludeFirst.value?<Comp />:<Comp2 />}
</KeepAlive>
</KeepAlive>