0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-27 20:12:40 +00:00

Remove debugging console.log calls

This commit is contained in:
G.Ambatte
2023-01-15 22:21:06 +13:00
parent b00a962e77
commit 5e2171ceb1

View File

@@ -47,7 +47,6 @@ const NotificationAdd = createClass({
.then((response)=>{
return response.body;
});
console.log(notification);
const update = {
notificationResult : `Created notification: ${JSON.stringify(notification, null, 2)}`
@@ -63,8 +62,6 @@ const NotificationAdd = createClass({
update.stopAt = '';
}
console.log(update);
this.setState(update);
},