@etsoo/materialui 1.4.12 → 1.4.13

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.
@@ -223,7 +223,8 @@ export class ReactApp extends CoreApp {
223
223
  onFailure();
224
224
  }
225
225
  else if (result != null && this.tryLoginIgnoreResult(result)) {
226
- return false;
226
+ // Ignore the result warning
227
+ return true;
227
228
  }
228
229
  });
229
230
  return true;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/materialui",
3
- "version": "1.4.12",
3
+ "version": "1.4.13",
4
4
  "description": "TypeScript Material-UI Implementation",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -451,7 +451,8 @@ export class ReactApp<
451
451
  } else if (result === false) {
452
452
  onFailure();
453
453
  } else if (result != null && this.tryLoginIgnoreResult(result)) {
454
- return false;
454
+ // Ignore the result warning
455
+ return true;
455
456
  }
456
457
  }
457
458
  );