Fixing a bug with listing type

pull/122/head
Dessalines 2019-04-17 12:58:14 -07:00
parent f9bf4ad7e3
commit e1289050fa
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ export class PostListings extends Component<PostListingsProps, PostListingsState
page: this.state.page,
limit: fetchLimit,
sort: SortType[this.state.sortType],
type_: ListingType[ListingType.Community]
type_: ListingType[this.state.type_]
}
WebSocketService.Instance.getPosts(getPostsForm);
}