feat(reply): show cid for reference, and add u/ to user address for consistency

This commit is contained in:
plebeius.eth
2023-10-31 12:10:19 +01:00
parent d729e2d2de
commit 6d0cbd29de

View File

@@ -23,6 +23,7 @@ const Reply: FC<ReplyProps> = ({ reply }) => {
link,
linkHeight,
linkWidth,
shortCid,
timestamp,
upvoteCount,
} = reply || {};
@@ -55,8 +56,9 @@ const Reply: FC<ReplyProps> = ({ reply }) => {
}}
className={styles.author}
>
{shortAddress}
u/{shortAddress}
</Link>
<span className={styles.time}>c/{shortCid}</span>&nbsp;
<span className={styles.score}>{scoreTranslation}</span>
&nbsp;
<span className={styles.time}>{utils.getFormattedTime(timestamp)}</span>