summaryrefslogtreecommitdiffstats
path: root/web/react/components
diff options
context:
space:
mode:
Diffstat (limited to 'web/react/components')
-rw-r--r--web/react/components/more_channels.jsx2
-rw-r--r--web/react/components/sidebar.jsx1
2 files changed, 1 insertions, 2 deletions
diff --git a/web/react/components/more_channels.jsx b/web/react/components/more_channels.jsx
index e851283ae..5261ed6a7 100644
--- a/web/react/components/more_channels.jsx
+++ b/web/react/components/more_channels.jsx
@@ -74,7 +74,7 @@ module.exports = React.createClass({
moreChannels = (
<table className='more-channel-table table'>
<tbody>
- {moreChannels.map(function cMap(channel) {
+ {channels.map(function cMap(channel) {
return (
<tr key={channel.id}>
<td>
diff --git a/web/react/components/sidebar.jsx b/web/react/components/sidebar.jsx
index 6ad606e5e..f6ac36f50 100644
--- a/web/react/components/sidebar.jsx
+++ b/web/react/components/sidebar.jsx
@@ -161,7 +161,6 @@ module.exports = React.createClass({
AsyncClient.updateLastViewedAt();
}
} else {
- console.log('hit');
AsyncClient.getChannels();
}