Skip to content

Commit

Permalink
Apply formatting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
eoghanmurray authored and github-actions[bot] committed Apr 12, 2023
1 parent 63175a3 commit f215c5f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/rrweb/src/record/observer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,9 @@ function initMouseInteractionObserver({
if ('pointerType' in event) {
Object.keys(PointerTypes).forEach(
(pointerKey: keyof typeof PointerTypes) => {
if ((event as PointerEvent).pointerType === pointerKey.toLowerCase()) {
if (
(event as PointerEvent).pointerType === pointerKey.toLowerCase()
) {
pointerType = PointerTypes[pointerKey];
return;
}
Expand Down

0 comments on commit f215c5f

Please sign in to comment.