Skip to content

Commit

Permalink
fix: fixed typo for arr order
Browse files Browse the repository at this point in the history
  • Loading branch information
titanism committed Nov 17, 2022
1 parent 5045278 commit f51e1c2
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 @@ -124,8 +124,8 @@ class Axe {
? process.env.AXE_OMIT_META_FIELDS.split(',').map((s) => s.trim())
: // browser environments should send client-side payload with all metadata
isBrowser
? ['level', 'err', 'app', 'args']
: [],
? []
: ['level', 'err', 'app', 'args'],
pickedFields: process.env.AXE_PICK_META_FIELDS
? process.env.AXE_PICK_META_FIELDS.split(',').map((s) => s.trim())
: [],
Expand Down

0 comments on commit f51e1c2

Please sign in to comment.