Skip to content
Snippets Groups Projects
Commit d857d0d1 authored by ThibG's avatar ThibG Committed by Eugen Rochko
Browse files

Fix trending hashtags being fetched every 36 seconds instead of every hour (#11631)

parent b48c7ee0
No related branches found
No related tags found
No related merge requests found
......@@ -17,7 +17,7 @@ export default class Trends extends ImmutablePureComponent {
componentDidMount () {
this.props.fetchTrends();
this.refreshInterval = setInterval(() => this.props.fetchTrends(), 36000);
this.refreshInterval = setInterval(() => this.props.fetchTrends(), 3600000);
}
componentWillUnmount () {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment