From 5e2171ceb12c71cc7f3d43075f649771f9451c17 Mon Sep 17 00:00:00 2001 From: "G.Ambatte" Date: Sun, 15 Jan 2023 22:21:06 +1300 Subject: [PATCH] Remove debugging console.log calls --- .../notificationUtils/notificationAdd/notificationAdd.jsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/client/admin/notificationUtils/notificationAdd/notificationAdd.jsx b/client/admin/notificationUtils/notificationAdd/notificationAdd.jsx index 78438644a..51fbecfb4 100644 --- a/client/admin/notificationUtils/notificationAdd/notificationAdd.jsx +++ b/client/admin/notificationUtils/notificationAdd/notificationAdd.jsx @@ -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); },