Browse Source

Removed logs

Arnaud Vergnet 4 years ago
parent
commit
9346178c9d
2 changed files with 0 additions and 5 deletions
  1. 0
    3
      src/components/Lists/GroupListAccordion.js
  2. 0
    2
      src/screens/GroupSelectionScreen.js

+ 0
- 3
src/components/Lists/GroupListAccordion.js View File

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

+ 0
- 2
src/screens/GroupSelectionScreen.js View File

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

Loading…
Cancel
Save