diff --git a/src/shared/components/post/post-listing.tsx b/src/shared/components/post/post-listing.tsx index ae43bff..5c562a4 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()}