diff --git a/src/component/fibers.ts b/src/component/fibers.ts index 169e02dd..696a68dc 100644 --- a/src/component/fibers.ts +++ b/src/component/fibers.ts @@ -121,6 +121,9 @@ export class Fiber { _render() { const node = this.node; + if (node.status > STATUS.MOUNTED) { + return; + } const root = this.root; if (root) { try {