Skip to content

Commit

Permalink
chore: fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ramboz authored Apr 18, 2024
1 parent 4c8d56a commit a2d3dfa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -243,8 +243,8 @@ function addUTMParametersTracking() {
[...usp.entries()]
.filter(([key]) => key.startsWith('utm_'))
// exclude keys that may leak PII
.filter(([key]) => key !== 'utm_id')
.filter(([key]) => key !== 'utm_term')
.filter(([key]) => key !== 'utm_id')
.filter(([key]) => key !== 'utm_term')
.forEach(([source, target]) => sampleRUM('utm', { source, target }));
}

Expand Down

0 comments on commit a2d3dfa

Please sign in to comment.