diff --git a/ui/src/components/post-listings.tsx b/ui/src/components/post-listings.tsx index 224f92ce2..8fc19b300 100644 --- a/ui/src/components/post-listings.tsx +++ b/ui/src/components/post-listings.tsx @@ -2,7 +2,7 @@ import { Component, linkEvent } from 'inferno'; import { Link } from 'inferno-router'; import { Subscription } from "rxjs"; import { retryWhen, delay, take } from 'rxjs/operators'; -import { UserOperation, Community as CommunityI, Post, GetPostsForm, SortType, ListingType, GetPostsResponse, CreatePostLikeResponse, CommunityUser} from '../interfaces'; +import { UserOperation, Post, GetPostsForm, SortType, ListingType, GetPostsResponse, CreatePostLikeResponse, CommunityUser} from '../interfaces'; import { WebSocketService, UserService } from '../services'; import { PostListing } from './post-listing'; import { msgOp, fetchLimit } from '../utils'; @@ -12,7 +12,6 @@ interface PostListingsProps { } interface PostListingsState { - community: CommunityI; moderators: Array; posts: Array; sortType: SortType; @@ -25,19 +24,6 @@ export class PostListings extends Component