added the seed field in the store

This commit is contained in:
Daria Golova
2022-07-27 16:20:33 +03:00
parent 7bb1832d4d
commit b4bccf2cba

View File

@@ -169,6 +169,7 @@ class Store {
get decryptedUserData(){
return this._userData.map((elem) => ({
...elem,
key: elem.label,
label: labelMap[elem.label],
value: cryptography.decryptMessageWithPassphrase(elem.value, elem.value_nonce, registrationStore.passPhrase, registrationStore.pubKey).split(':')[1]