diff --git a/packages/uiweb/src/lib/components/chat/ChatViewBubbleCore/cards/reply/ReplyCard.tsx b/packages/uiweb/src/lib/components/chat/ChatViewBubbleCore/cards/reply/ReplyCard.tsx
index 9171fef7b..ac8ababe6 100644
--- a/packages/uiweb/src/lib/components/chat/ChatViewBubbleCore/cards/reply/ReplyCard.tsx
+++ b/packages/uiweb/src/lib/components/chat/ChatViewBubbleCore/cards/reply/ReplyCard.tsx
@@ -155,15 +155,15 @@ export const ReplyCard = ({
- {`${replyPayloadManager.payload.fromDID?.split(':')[1].slice(0, 6)}...${replyPayloadManager.payload.fromDID
+ {`${replyPayloadManager.payload.fromDID
?.split(':')[1]
- .slice(-6)}`}
+ .slice(0, 6)}...${replyPayloadManager.payload.fromDID?.split(':')[1].slice(-6)}`}
-
)}
);
};
-const ReplySection = styled(Section) `
+const ReplySection = styled(Section)`
border-left: 4px solid ${({ borderBG }) => borderBG || 'transparent'};
`;