diff --git a/core/rendered_connection.ts b/core/rendered_connection.ts index 1e91778af..c472867db 100644 --- a/core/rendered_connection.ts +++ b/core/rendered_connection.ts @@ -187,7 +187,9 @@ export class RenderedConnection extends Connection { * was updated. */ moveTo(x: number, y: number): boolean { - const moved = this.x !== x || this.y !== y; + // TODO(#6922): Readd this optimization. + // const moved = this.x !== x || this.y !== y; + const moved = true; let updated = false; if (this.trackedState_ === RenderedConnection.TrackedState.WILL_TRACK) {