@capillarytech/cap-ui-utils 1.4.1 → 1.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/GA/index.js +2 -2
  2. package/package.json +1 -1
package/GA/index.js CHANGED
@@ -10,12 +10,12 @@ import warn from '../utils/console/warn';
10
10
  import log from '../utils/console/log';
11
11
 
12
12
  const _initialize = (GAConfigs) => {
13
- const { accessKey, trackUIError, trackLoadPerformance, gaOptions = {} } = GAConfigs || {};
13
+ const { accessKey, trackUIError, trackLoadPerformance } = GAConfigs || {}
14
14
  if (!accessKey) {
15
15
  warn("Cannot initialize GA without accessKey");
16
16
  return;
17
17
  } else {
18
- ReactGA.initialize(accessKey,{debug: true, gaOptions});
18
+ ReactGA.initialize(accessKey,{debug: true,});
19
19
  }
20
20
  if(trackUIError){
21
21
  errorTracks();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capillarytech/cap-ui-utils",
3
- "version": "1.4.1",
3
+ "version": "1.4.2",
4
4
  "description": "Utility functions shared accross all the modules",
5
5
  "main": "index.js",
6
6
  "scripts": {