forked from vergnet/application-amicale
Removed logs
This commit is contained in:
parent
b2d7cf61cc
commit
9346178c9d
2 changed files with 0 additions and 5 deletions
|
@ -81,9 +81,6 @@ class GroupListAccordion extends React.Component<Props, State> {
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
const item = this.props.item;
|
const item = this.props.item;
|
||||||
console.log("=====================================================");
|
|
||||||
console.log(this.props.currentSearchString);
|
|
||||||
console.log(this.state.expanded);
|
|
||||||
return (
|
return (
|
||||||
<List.Accordion
|
<List.Accordion
|
||||||
title={item.name}
|
title={item.name}
|
||||||
|
|
|
@ -80,7 +80,6 @@ class GroupSelectionScreen extends React.Component<Props, State> {
|
||||||
* @param str The new search string
|
* @param str The new search string
|
||||||
*/
|
*/
|
||||||
onSearchStringChange = (str: string) => {
|
onSearchStringChange = (str: string) => {
|
||||||
console.log('search');
|
|
||||||
this.setState({currentSearchString: str})
|
this.setState({currentSearchString: str})
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -134,7 +133,6 @@ class GroupSelectionScreen extends React.Component<Props, State> {
|
||||||
else
|
else
|
||||||
this.addGroupToFavorites(newFavorites, group);
|
this.addGroupToFavorites(newFavorites, group);
|
||||||
this.setState({favoriteGroups: newFavorites})
|
this.setState({favoriteGroups: newFavorites})
|
||||||
console.log(newFavorites);
|
|
||||||
AsyncStorageManager.getInstance().savePref(
|
AsyncStorageManager.getInstance().savePref(
|
||||||
AsyncStorageManager.getInstance().preferences.planexFavoriteGroups.key,
|
AsyncStorageManager.getInstance().preferences.planexFavoriteGroups.key,
|
||||||
JSON.stringify(newFavorites));
|
JSON.stringify(newFavorites));
|
||||||
|
|
Loading…
Reference in a new issue