@etsoo/react 1.3.80 → 1.3.81

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.
@@ -68,6 +68,7 @@ export class ReactApp extends CoreApp {
68
68
  if (index > 0 && field === CoreApp.headerTokenField) {
69
69
  // Clear passphrase to regenerate the device id
70
70
  StorageUtils.setSessionData(CoreApp.devicePassphraseField, undefined);
71
+ console.log('devicePassphraseField', index, StorageUtils.getSessionData(CoreApp.devicePassphraseField));
71
72
  // Clear token
72
73
  return null;
73
74
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/react",
3
- "version": "1.3.80",
3
+ "version": "1.3.81",
4
4
  "description": "TypeScript ReactJs framework",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -213,6 +213,14 @@ export class ReactApp<
213
213
  undefined
214
214
  );
215
215
 
216
+ console.log(
217
+ 'devicePassphraseField',
218
+ index,
219
+ StorageUtils.getSessionData(
220
+ CoreApp.devicePassphraseField
221
+ )
222
+ );
223
+
216
224
  // Clear token
217
225
  return null;
218
226
  }