Skip to content

Commit

Permalink
Remove console log
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-aranda committed Jan 4, 2022
1 parent 9fcd820 commit ecf7ac0
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,12 +116,9 @@ export default class SubscriptionTable extends Component {
{this.state.subscriptionsDict[cscKey].map((topicKey) => {
const topicFilter = this.state.topicFilter === '' || this.state.topicRegExp.test(topicKey);
if (!topicFilter) return null;

const [type, topic] = topicKey.split('-');
const groupKey = [type, cscKey, topic].join('-');
// console.log(groupKey);
const streamData = this.props.getStreamData(groupKey);
// console.log(streamData);
const accessor = this.getAccessor(groupKey);
const dict = accessor(streamData);
const dictKeys = Object.keys(dict);
Expand Down

0 comments on commit ecf7ac0

Please sign in to comment.