Skip to content

Commit

Permalink
refactor: rename var
Browse files Browse the repository at this point in the history
  • Loading branch information
maryia-deriv committed Aug 13, 2024
1 parent 8a8315a commit 3eca94c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/store/ChartAdapterStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ export default class ChartAdapterStore {
}
if (e.touches.length > 1) {
this.touchValues = { multiTouch: true };
this.touchValues.touchIds = Array.from(e.touches).map(t => t.identifier);
this.touchValues.touchIds = Array.from(e.touches).map(touch => touch.identifier);
return;
}

Expand Down

0 comments on commit 3eca94c

Please sign in to comment.