@@ -526,9 +524,8 @@ const Thread = () => {
{reply.author.displayName
? reply.author.displayName.length > 20
? <>
-
{reply.author.displayName.slice(0, 20) + " (...)"}
@@ -543,9 +540,8 @@ const Thread = () => {
(u/
{reply.author.address.length > 20 ?
<>
-
{reply.author.address.slice(0, 20) + "..."}
@@ -592,9 +588,9 @@ const Thread = () => {
})
})}
-
+
-
+
@@ -602,9 +598,8 @@ const Thread = () => {
{comment.author?.displayName
? comment.author?.displayName.length > 15
? <>
-
{comment.author?.displayName.slice(0, 15) + " (...)"}
@@ -619,9 +614,8 @@ const Thread = () => {
(u/
{comment.author?.address.length > 15 ?
<>
-
{comment.author?.address.slice(0, 15) + "..."}
@@ -636,9 +630,8 @@ const Thread = () => {
{comment.title ? (
comment.title.length > 30 ?
<>
-
{comment.title.slice(0, 30) + " (...)"}
@@ -701,7 +694,7 @@ const Thread = () => {
const renderedComments = renderThreadComments(comment.replies.pages.topAll.comments);
return renderedComments.map(reply => {
return (
-
+
@@ -709,9 +702,8 @@ const Thread = () => {
{reply.author.displayName
? reply.author.displayName.length > 12
? <>
-
{reply.author.displayName.slice(0, 12) + " (...)"}
@@ -726,9 +718,8 @@ const Thread = () => {
(u/
{reply.author.address.length > 12 ?
<>
-
{reply.author.address.slice(0, 12) + "..."}
@@ -851,7 +842,7 @@ const Thread = () => {
>
- ) : (
+ ) : (
)}