Skip to content

Commit 7213ca8

Browse files
committed
fix: empty values in dashboard sub-community
1 parent 12adaec commit 7213ca8

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)