mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-23 04:41:14 +00:00
remove explicit types
This commit is contained in:
parent
1ed148d3d2
commit
1dd8cb0994
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ export class PostListings extends Component<PostListingsProps, any> {
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
{this.posts.length > 0 ? (
|
{this.posts.length > 0 ? (
|
||||||
this.posts.map((post_view: PostView, idx: number) => (
|
this.posts.map((post_view, idx) => (
|
||||||
<>
|
<>
|
||||||
<PostListing
|
<PostListing
|
||||||
post_view={post_view}
|
post_view={post_view}
|
||||||
|
|
Loading…
Reference in a new issue