@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.
- package/lib/app/ReactApp.js +1 -0
- package/package.json +1 -1
- package/src/app/ReactApp.ts +8 -0
package/lib/app/ReactApp.js
CHANGED
|
@@ -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
package/src/app/ReactApp.ts
CHANGED