diff --git a/src/components/Card.jsx b/src/components/Card.jsx index 74c2a37..4757b32 100644 --- a/src/components/Card.jsx +++ b/src/components/Card.jsx @@ -118,7 +118,6 @@ class Card extends React.Component { {this.renderTimestamp()} {this.renderLocation()} - {this.renderCategory()} {this.renderSummary()} ) diff --git a/src/components/Toolbar.jsx b/src/components/Toolbar.jsx index c2492d1..52aa54c 100644 --- a/src/components/Toolbar.jsx +++ b/src/components/Toolbar.jsx @@ -92,7 +92,6 @@ class Toolbar extends React.Component { } renderToolbarTab (_selected, label, iconKey) { - console.log(label) const isActive = (this.state._selected === _selected) let classes = (isActive) ? 'toolbar-tab active' : 'toolbar-tab'