Skip to content

Commit

Permalink
deploy 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
arietrouw committed Aug 15, 2024
1 parent 5c61ac2 commit 7749a7e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true,
"**/node_modules": true,
"**/node_modules": false,
"**/build": true,
"**/dist": false,
"**/.webpack": true,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
"url": "https://github.com/xylabs/sdk-pixel-js.git"
},
"sideEffects": false,
"version": "2.0.0",
"version": "2.0.1",
"packageManager": "[email protected]",
"type": "module"
}
4 changes: 2 additions & 2 deletions src/getSystemInfo.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { parse } from 'bowser'
import Bowser from 'bowser'

import { UserEventSystem } from './Api/index.js'

let systemInfo: UserEventSystem | undefined

export const getSystemInfo = () => {
try {
systemInfo = systemInfo || parse(window.navigator.userAgent)
systemInfo = systemInfo || Bowser.getParser(window.navigator.userAgent).getResult()
} catch (ex) {
console.log(`getSystemInfo Error: ${ex}`)
}
Expand Down

0 comments on commit 7749a7e

Please sign in to comment.