Remove console logs

This commit is contained in:
0xa663
2024-02-16 11:24:38 +01:00
parent 7a84e8b690
commit 79dc76516a
4 changed files with 0 additions and 12 deletions
-2
View File
@@ -130,8 +130,6 @@ export class Popup {
}
}
});
} else {
console.error("Missing reference");
}
});
}
-3
View File
@@ -47,11 +47,8 @@ export class Main extends React.Component<Props, State> {
componentDidMount() {
this.props.store.on(StoreEvents.Any, this.update);
this.update();
console.error(this.STORAGE_KEY);
this.props.storage.getItem<StoreSettings>(this.STORAGE_KEY).then(data => {
console.error(data, this.STORAGE_KEY, data !== null, !this.destroyed);
if (data !== null && !this.destroyed) {
console.error("loadingnn????????", data);
this.setState(data);
}
});