summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2015-10-02 09:13:30 -0700
committer=Corey Hulen <corey@hulen.com>2015-10-02 09:13:30 -0700
commit4452bb798878ee3a803b018f817cb3259e341a82 (patch)
tree3306e2622b000a29f029497eb9b3a19c591cde37 /web
parentcee6dc270b22d8cd8458f199c87d58f40b433ca5 (diff)
downloadchat-4452bb798878ee3a803b018f817cb3259e341a82.tar.gz
chat-4452bb798878ee3a803b018f817cb3259e341a82.tar.bz2
chat-4452bb798878ee3a803b018f817cb3259e341a82.zip
Fixing issues
Diffstat (limited to 'web')
-rw-r--r--web/react/components/navbar_dropdown.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/react/components/navbar_dropdown.jsx b/web/react/components/navbar_dropdown.jsx
index dc5983f1e..78057d10b 100644
--- a/web/react/components/navbar_dropdown.jsx
+++ b/web/react/components/navbar_dropdown.jsx
@@ -9,7 +9,7 @@ var TeamStore = require('../stores/team_store.jsx');
var Constants = require('../utils/constants.jsx');
function getStateFromStores() {
- return {teams: UserStore.getTeams(), currentTeam: TeamStore.getCurrent()};
+ return {teams: UserStore.getTeams()};
}
export default class NavbarDropdown extends React.Component {