mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-01 00:43:12 +03:00
fixed#closed #fixed #330
This commit is contained in:
parent
b399ec25b3
commit
efd17a854a
@ -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}
|
||||
|
@ -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()}
|
||||
|
Loading…
Reference in New Issue
Block a user