Skip to content

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
willeastcott committed Mar 10, 2024
1 parent 80cdf37 commit 2c26ba5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/platform/input/touch-event.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ class TouchEvent {
this.event = event;

this.touches = Array.from(event.touches).map(touch => new Touch(touch));
this.changedTouches = Array.from(event.changedTouches).map(touch => new Touch(touch));
this.changedTouches = Array.from(event.changedTouches).map(touch => new Touch(touch));
}

/**
Expand Down

0 comments on commit 2c26ba5

Please sign in to comment.