remove explicit types

This commit is contained in:
ayan4m1 2023-06-15 08:31:36 -04:00
parent 1ed148d3d2
commit 1dd8cb0994

View file

@ -68,7 +68,7 @@ export class PostListings extends Component<PostListingsProps, any> {
return (
<div>
{this.posts.length > 0 ? (
this.posts.map((post_view: PostView, idx: number) => (
this.posts.map((post_view, idx) => (
<>
<PostListing
post_view={post_view}