diff --git a/src/components/views/Pending.jsx b/src/components/views/Pending.jsx index eece3a5c..1f58c149 100644 --- a/src/components/views/Pending.jsx +++ b/src/components/views/Pending.jsx @@ -227,18 +227,18 @@ const Pending = () => { ) : null} - {comment.author?.displayName - ? comment.author?.displayName.length > 20 + {comment.displayName + ? comment.displayName.length > 20 ? <> - {comment.author?.displayName.slice(0, 20) + " (...)"} + {comment.displayName.slice(0, 20) + " (...)"} > : - {comment.author?.displayName} + {comment.displayName} : Anonymous} @@ -246,7 +246,7 @@ const Pending = () => { (u/ - {comment.author?.shortAddress} + {comment.author?.address} ) @@ -273,25 +273,25 @@ const Pending = () => {