only refetch the comments if you're an admin

This commit is contained in:
Riley Davis
2017-04-05 14:41:06 -06:00
parent 5dbeb695a4
commit e4e2ff03b3
+2 -1
View File
@@ -41,9 +41,10 @@ class Embed extends Component {
state = {activeTab: 0, showSignInDialog: false, activeReplyBox: ''};
changeTab = (tab) => {
const {isAdmin} = this.props.auth;
// Everytime the comes from another tab, the Stream needs to be updated.
if (tab === 0) {
if (tab === 0 && isAdmin) {
this.props.data.refetch();
}