From 9753d1ef72a7746c7838b9898eae58bf0317a090 Mon Sep 17 00:00:00 2001 From: Alex Louden Date: Fri, 21 Feb 2020 11:51:04 +0800 Subject: [PATCH] Removed console.log, whoops --- src/utils.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/utils.js b/src/utils.js index 838c921..3a49655 100644 --- a/src/utils.js +++ b/src/utils.js @@ -165,7 +165,6 @@ exports.removeEmptyFirestoreProperties = function removeEmptyFirestoreProperties if (current[s] == null) { // no existing data obj[s] = value.arg; - console.log(obj[s], value); } else { // add to existing data obj[s] = current[s] + value.arg;