Fix loading more items in account following/followers

master
Thibaut Girka 2019-09-04 11:23:26 +02:00 committed by ThibG
parent ce182efd68
commit 0128509605
2 changed files with 0 additions and 2 deletions

View File

@ -60,7 +60,6 @@ export default class Followers extends ImmutablePureComponent {
}
handleLoadMore = debounce(() => {
e.preventDefault();
this.props.dispatch(expandFollowers(this.props.params.accountId));
}, 300, { leading: true });

View File

@ -60,7 +60,6 @@ export default class Following extends ImmutablePureComponent {
}
handleLoadMore = debounce(() => {
e.preventDefault();
this.props.dispatch(expandFollowing(this.props.params.accountId));
}, 300, { leading: true });