From b7ec2fd4924dc186acc9205044d1539f1e267e0e Mon Sep 17 00:00:00 2001 From: Henry Smith Date: Sat, 15 Apr 2017 16:41:22 +0200 Subject: [PATCH] Fix function call name typo (#1851) --- app/assets/javascripts/components/features/followers/index.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/javascripts/components/features/followers/index.jsx b/app/assets/javascripts/components/features/followers/index.jsx index bcadf6010..af0a0a16a 100644 --- a/app/assets/javascripts/components/features/followers/index.jsx +++ b/app/assets/javascripts/components/features/followers/index.jsx @@ -50,7 +50,7 @@ const Followers = React.createClass({ handleLoadMore (e) { e.preventDefault(); - this.props.dispatch(expandFollowing(Number(this.props.params.accountId))); + this.props.dispatch(expandFollowers(Number(this.props.params.accountId))); }, render () {