Skip to content

Commit 5277669

Browse files
fix: Remove console.log from isEmptyField-function
emptyFieldValue is reintroduced in #98, however there was still an console.log in the source that logs all values to the console.
1 parent 967c3d3 commit 5277669

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/utils.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,5 @@ function computeSchemaDifferences(schemaA, schemaB) {
135135
* @returns {boolean}
136136
*/
137137
function isEmptyField(fieldValue) {
138-
console.log(fieldValue);
139138
return _.isUndefined(fieldValue) || _.isNull(fieldValue) || fieldValue === '';
140139
}

0 commit comments

Comments
 (0)