diff --git a/src/components/Lists/GroupListAccordion.js b/src/components/Lists/GroupListAccordion.js index b4437a5..d753daf 100644 --- a/src/components/Lists/GroupListAccordion.js +++ b/src/components/Lists/GroupListAccordion.js @@ -81,9 +81,6 @@ class GroupListAccordion extends React.Component { render() { const item = this.props.item; - console.log("====================================================="); - console.log(this.props.currentSearchString); - console.log(this.state.expanded); return ( { * @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 { else this.addGroupToFavorites(newFavorites, group); this.setState({favoriteGroups: newFavorites}) - console.log(newFavorites); AsyncStorageManager.getInstance().savePref( AsyncStorageManager.getInstance().preferences.planexFavoriteGroups.key, JSON.stringify(newFavorites));