diff --git a/app/javascript/mastodon/features/getting_started/index.js b/app/javascript/mastodon/features/getting_started/index.js
index c45765ec4b..f0a3834498 100644
--- a/app/javascript/mastodon/features/getting_started/index.js
+++ b/app/javascript/mastodon/features/getting_started/index.js
@@ -82,6 +82,10 @@ export default class GettingStarted extends ImmutablePureComponent {
setTimeout(() => this.props.fetchTrends(), 5000);
}
+ handleRefreshTrends = () => {
+ this.props.fetchTrends();
+ }
+
render () {
const { intl, myAccount, multiColumn, unreadFollowRequests, trends } = this.props;
@@ -138,7 +142,7 @@ export default class GettingStarted extends ImmutablePureComponent {