From a7cadc63eec3afe0966770088bdb090f8bf299ab Mon Sep 17 00:00:00 2001 From: Alec Armbruster <35377827+alectrocute@users.noreply.github.com> Date: Thu, 29 Jun 2023 13:25:57 -0400 Subject: [PATCH] make suggested changes --- src/shared/components/post/post-listing.tsx | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/shared/components/post/post-listing.tsx b/src/shared/components/post/post-listing.tsx index ae43bff9..5c562a4a 100644 --- a/src/shared/components/post/post-listing.tsx +++ b/src/shared/components/post/post-listing.tsx @@ -401,11 +401,11 @@ export class PostListing extends Component { } } - createdLine({ extraClasses = "" }: { extraClasses?: string }) { + createdLine() { const post_view = this.postView; return ( -
+
@@ -1374,9 +1374,7 @@ export class PostListing extends Component {
- {this.createdLine({ - extraClasses: "mb-1", - })} + {this.createdLine()} {/* If it has a thumbnail, do a right aligned thumbnail */} {this.mobileThumbnail()} @@ -1410,7 +1408,7 @@ export class PostListing extends Component {
{this.postTitleLine()} - {this.createdLine({})} + {this.createdLine()} {this.commentsLine()} {this.duplicatesLine()} {this.removeAndBanDialogs()}