We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b07815d commit d4b1bb8Copy full SHA for d4b1bb8
1 file changed
packages/@ember/-internals/glimmer/lib/renderer.ts
@@ -160,7 +160,7 @@ class ComponentRootState {
160
associateDestroyableChild(this, this.#result);
161
162
this.#render = errorLoopTransaction(() => {
163
- if (isDestroying(result) || isDestroying(result)) return;
+ if (isDestroying(result) || isDestroyed(result)) return;
164
165
return result.rerender({
166
alwaysRevalidate: false,
@@ -235,7 +235,7 @@ class ClassicRootState {
235
associateDestroyableChild(owner, result);
236
237
this.render = errorLoopTransaction(() => {
238
239
240
241
0 commit comments