From 3bd680802264ee3f6d8e8dede670efb4d8de9878 Mon Sep 17 00:00:00 2001
From: donal <donalspring@gmail.com>
Date: Sun, 22 Apr 2018 13:50:55 +0200
Subject: [PATCH] FIX - linting errors for the build

---
 src/store/actions.js |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/store/actions.js b/src/store/actions.js
index 3a9abec..3c581cd 100644
--- a/src/store/actions.js
+++ b/src/store/actions.js
@@ -105,8 +105,8 @@
     // Fire and forget style backend update ;)
     return axios
       .put(config.todoEndpoint + "/" + state.todos[i]._id, state.todos[i])
-      .then(data => {
-        console.log("INFO - item " + id + " updated");
+      .then(() => {
+        console.info("INFO - item " + id + " updated");
       });
   }
 };

--
Gitblit v1.9.3