Skip to content

Commit 039cdd7

Browse files
Merge pull request #5116 from topcoder-platform/issue-5046-gets0ul
fix: empty values in dashboard sub-community
2 parents fe857a9 + 7213ca8 commit 039cdd7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/shared/containers/Dashboard/index.jsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,7 @@ export class DashboardPageContainer extends React.Component {
150150
// if (now - tcBlogTimestamp > CACHE_MAX_AGE
151151
// && !tcBlogLoading) getTopcoderBlogFeed();
152152

153-
if (now - communitiesTimestamp < CACHE_MAX_AGE
154-
&& now - activeChallengesTimestamp < CACHE_MAX_AGE) {
153+
if (now - communitiesTimestamp < CACHE_MAX_AGE) {
155154
updateCommunityStats(this.props);
156155
}
157156
}

0 commit comments

Comments
 (0)