Delete stray console.log

This commit is contained in:
Tom Russell 2018-10-05 21:45:27 +01:00
parent 2b29d01a21
commit 6733be79c2
2 changed files with 0 additions and 2 deletions

View File

@ -36,7 +36,6 @@ class App extends React.Component {
this.logout(); this.logout();
return return
} }
console.log("Logging in", user);
this.setState({user: user}); this.setState({user: user});
} }

View File

@ -20,7 +20,6 @@ class Tooltip extends Component {
} }
render() { render() {
console.log(this.state, this.props)
return ( return (
<div className="tooltip-wrap"> <div className="tooltip-wrap">
<button className={(this.state.active? "active ": "") + "tooltip-hint icon-button"} title={this.props.text} <button className={(this.state.active? "active ": "") + "tooltip-hint icon-button"} title={this.props.text}