remove console logging on frontend

This commit is contained in:
Bilal Catic
2019-05-24 14:12:47 +02:00
parent 1809b0991d
commit aa3a4d8720

View File

@@ -9,7 +9,6 @@ class Home extends Component {
fetch('/api')
.then(response => response.json())
.then(result => {
console.log(result);
if (result.status === 1) {
this.setState({apiStatus: 'working'});
} else {