diff --git a/src/partials/profile/ProfileTableItem.jsx b/src/partials/profile/ProfileTableItem.jsx
index aa6f181..371bc66 100644
--- a/src/partials/profile/ProfileTableItem.jsx
+++ b/src/partials/profile/ProfileTableItem.jsx
@@ -28,7 +28,7 @@ function ProfileTableItem(props) {
- {props.status === 'Blockchained' || props.status === statusMap.processed
+ {props.status === statusMap.blockchained || props.status === statusMap.processed
? `${props.value.slice(0, 4)}****${props.value.slice(props.value.length - 4)}`
: props.value}
@@ -36,8 +36,8 @@ function ProfileTableItem(props) {
-
-
+
+
{props.status === statusMap.blockchained ? (
{props.status}
) : props.status === statusMap.processed ? (
| |