clean: remove unnecessary logs

This commit is contained in:
sethburkart123
2024-08-24 20:45:46 +10:00
parent 7519312282
commit a8ff2213bd
2 changed files with 0 additions and 2 deletions
@@ -21,7 +21,6 @@ class StorageManager {
return Reflect.get(target.data, prop);
},
set: (target, prop: keyof SettingsState, value) => {
console.log(target)
Reflect.set(target.data, prop, value);
target.saveToStorage();
return true;