diff --git a/src/component.ts b/src/component.ts index f318c940..a8fc489d 100644 --- a/src/component.ts +++ b/src/component.ts @@ -349,7 +349,7 @@ export class Component< if (shouldUpdate) { await this.willUpdateProps(nextProps); this.props = nextProps; - await this.render(false, patchQueue); + await this.render(forceUpdate, patchQueue); } }