@etsoo/react 1.5.47 → 1.5.48

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.
@@ -224,6 +224,8 @@ export class ServiceApp extends ReactApp {
224
224
  // Success
225
225
  if (result === true)
226
226
  return;
227
+ // Clear cache
228
+ this.clearCacheData();
227
229
  const message = this.formatRefreshTokenResult(result);
228
230
  if (message == null) {
229
231
  this.loginFailed();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/react",
3
- "version": "1.5.47",
3
+ "version": "1.5.48",
4
4
  "description": "TypeScript ReactJs framework",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -320,6 +320,9 @@ export class ServiceApp<
320
320
  // Success
321
321
  if (result === true) return;
322
322
 
323
+ // Clear cache
324
+ this.clearCacheData();
325
+
323
326
  const message = this.formatRefreshTokenResult(result);
324
327
  if (message == null) {
325
328
  this.loginFailed();