Skip to content

Commit 53e350a

Browse files
author
Rodrigo Solís
committed
fix tweets availability getter
1 parent a6d9fb9 commit 53e350a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/scripts/store/modules/twitter_slides.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ const twitter = {
7373
}));
7474
},
7575
getTweetsAvailability(state) {
76-
return !state.loading || state.error;
76+
return !state.loading && !state.error && state.timeline.length;
7777
},
7878
},
7979
};

0 commit comments

Comments
 (0)