diff --git a/src/shared/components/post/post-listings.tsx b/src/shared/components/post/post-listings.tsx index 098a015d..294b9494 100644 --- a/src/shared/components/post/post-listings.tsx +++ b/src/shared/components/post/post-listings.tsx @@ -68,7 +68,7 @@ export class PostListings extends Component { return (
{this.posts.length > 0 ? ( - this.posts.map(post_view => ( + this.posts.map((post_view: PostView, idx: number) => ( <> { onAddAdmin={this.props.onAddAdmin} onTransferCommunity={this.props.onTransferCommunity} /> -
+ {idx + 1 !== this.posts.length && ( +
+ )} )) ) : (