diff --git a/src/partials/profile/ProfileTableItem.jsx b/src/partials/profile/ProfileTableItem.jsx
index a75750b..713c9b0 100644
--- a/src/partials/profile/ProfileTableItem.jsx
+++ b/src/partials/profile/ProfileTableItem.jsx
@@ -20,7 +20,7 @@ function ProfileTableItem(props) {
-
{props.value}
+
{props.status==='Blockchained'?`${props.value.slice(0,4)}****${props.value.slice(props.value.length-4)}`:props.value}
{props.property}
diff --git a/src/store/store.js b/src/store/store.js
index 438d024..bd9905f 100644
--- a/src/store/store.js
+++ b/src/store/store.js
@@ -227,7 +227,7 @@ class Store {
return {
...initialData,
status: 'Blockchained',
- value: `${elem.value.slice(0,4)}****${elem.value.slice(elem.value.length-4)}`
+ value: elem.value
}
}
const [seed, value] = cryptography.decryptMessageWithPassphrase(elem.value, elem.value_nonce, this.passPhrase, this.pubKey).split(':');