ouisys-engine 2.1.49 → 2.1.50

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.
@@ -125,7 +125,7 @@ function getRedirectUrlAction(_ref) {
125
125
 
126
126
  setTimeout(function () {
127
127
  window.location.href = redirectUrl;
128
- }, 1000);
128
+ }, 0);
129
129
  }
130
130
  }, 500);
131
131
  } else {
@@ -135,7 +135,7 @@ function getRedirectUrlAction(_ref) {
135
135
 
136
136
  setTimeout(function () {
137
137
  window.location.href = redirectUrl;
138
- }, 3000);
138
+ }, 1000);
139
139
  }
140
140
  } else {
141
141
  dispatch({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ouisys-engine",
3
- "version": "2.1.49",
3
+ "version": "2.1.50",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "directories": "dist dev-tools",
@@ -46,14 +46,14 @@ export function getRedirectUrlAction({extraParams, autoRedirect = false, isGetRe
46
46
  tracker.advancedInFlow('tallyman.v1-one-click', 'click-redirect-url', {redirect_url:redirectUrl});
47
47
  setTimeout(() => {
48
48
  window.location.href = redirectUrl;
49
- }, 1000);
49
+ }, 0);
50
50
  }
51
51
  }, 500);
52
52
  }else{
53
53
  tracker.advancedInFlow('tallyman.v1-one-click', 'click-redirect-url', {redirect_url:redirectUrl});
54
54
  setTimeout(() => {
55
55
  window.location.href = redirectUrl;
56
- }, 3000);
56
+ }, 1000);
57
57
  }
58
58
 
59
59