From 1dd8cb09949255593b3a58bd447ac9915b1d41c6 Mon Sep 17 00:00:00 2001 From: ayan4m1 Date: Thu, 15 Jun 2023 08:31:36 -0400 Subject: [PATCH] remove explicit types --- src/shared/components/post/post-listings.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/components/post/post-listings.tsx b/src/shared/components/post/post-listings.tsx index 294b949..00370f0 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: PostView, idx: number) => ( + this.posts.map((post_view, idx) => ( <>