🔇 Remove console.log

This commit is contained in:
2022-06-02 21:10:35 +02:00
parent 1fee9bf0c2
commit 8bfa0e1bde

View File

@ -32,7 +32,6 @@ function isChanged(lesson, key) {
if (!substitution.change) return false;
const changedKeys = Object.keys(substitution.change);
if (!changedKeys.includes(key)) return false;
console.log(lesson, changedKeys);
return lesson[key] != substitution.change[key];
}