From e9341e791bfa855683d098f1223bec1938bacf54 Mon Sep 17 00:00:00 2001 From: Jay Sitter <jay@jaysitter.com> Date: Thu, 22 Jun 2023 23:53:48 -0400 Subject: [PATCH] fix: Remove unused prop --- src/shared/components/post/post-listing.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/shared/components/post/post-listing.tsx b/src/shared/components/post/post-listing.tsx index 8e0cc28..e8ab95e 100644 --- a/src/shared/components/post/post-listing.tsx +++ b/src/shared/components/post/post-listing.tsx @@ -600,7 +600,6 @@ export class PostListing extends Component<PostListingProps, PostListingState> { <VoteButtonsCompact id={this.postView.post.id} onVote={this.props.onPostVote} - postListing={this} enableDownvotes={this.props.enableDownvotes} counts={this.postView.counts} my_vote={this.postView.my_vote} @@ -1383,7 +1382,6 @@ export class PostListing extends Component<PostListingProps, PostListingState> { <VoteButtons id={this.postView.post.id} onVote={this.props.onPostVote} - postListing={this} enableDownvotes={this.props.enableDownvotes} counts={this.postView.counts} my_vote={this.postView.my_vote} -- 2.44.1