fixed#closed #fixed #330

This commit is contained in:
u-e 2019-01-04 15:35:22 +03:00
parent b399ec25b3
commit efd17a854a
2 changed files with 1 additions and 4 deletions

View File

@ -122,9 +122,6 @@ class FollowsContainer extends Component {
isFollowingPress, users, isLoading, count, username, filterResult,
} = this.state;
if (!users) {
return null;
}
return (
<FollowsScreen
loadMore={this._loadFollows}

View File

@ -73,7 +73,7 @@ class FollowsScreen extends PureComponent {
isHasSearch
handleOnSearch={handleSearch}
/>
{(filterResult && data && filterResult.length > 0) || data.length > 0 ? (
{(filterResult && data && filterResult.length > 0) || (data && data.length > 0) ? (
<FlatList
data={filterResult || data}
keyExtractor={(item, index) => index.toString()}