Removed logs

This commit is contained in:
Arnaud Vergnet 2020-04-16 11:56:11 +02:00
parent b2d7cf61cc
commit 9346178c9d
2 changed files with 0 additions and 5 deletions

View file

@ -81,9 +81,6 @@ class GroupListAccordion extends React.Component<Props, State> {
render() {
const item = this.props.item;
console.log("=====================================================");
console.log(this.props.currentSearchString);
console.log(this.state.expanded);
return (
<List.Accordion
title={item.name}

View file

@ -80,7 +80,6 @@ class GroupSelectionScreen extends React.Component<Props, State> {
* @param str The new search string
*/
onSearchStringChange = (str: string) => {
console.log('search');
this.setState({currentSearchString: str})
};
@ -134,7 +133,6 @@ class GroupSelectionScreen extends React.Component<Props, State> {
else
this.addGroupToFavorites(newFavorites, group);
this.setState({favoriteGroups: newFavorites})
console.log(newFavorites);
AsyncStorageManager.getInstance().savePref(
AsyncStorageManager.getInstance().preferences.planexFavoriteGroups.key,
JSON.stringify(newFavorites));