Browse Source

Removed logs

Arnaud Vergnet 4 years ago
parent
commit
ebbd4df591

+ 0
- 1
src/components/Custom/ErrorView.js View File

@@ -87,7 +87,6 @@ class ErrorView extends React.PureComponent<Props, State> {
87 87
     }
88 88
 
89 89
     goToLogin = () => {
90
-        console.log(this.props.route);
91 90
         this.props.navigation.navigate("login",
92 91
         {
93 92
            screen: 'login',

+ 0
- 2
src/screens/Planning/PlanningDisplayScreen.js View File

@@ -40,7 +40,6 @@ class PlanningDisplayScreen extends React.Component<Props, State> {
40 40
 
41 41
         if (this.props.route.params.data !== undefined) {
42 42
             this.displayData = this.props.route.params.data;
43
-            console.log(this.displayData);
44 43
             this.eventId = this.displayData.id;
45 44
             this.shouldFetchData = false;
46 45
             this.errorCode = 0;
@@ -69,7 +68,6 @@ class PlanningDisplayScreen extends React.Component<Props, State> {
69 68
 
70 69
     onFetchSuccess = (data: Object) => {
71 70
         this.displayData = data;
72
-        console.log(this.displayData);
73 71
         this.setState({loading: false});
74 72
     };
75 73
 

+ 0
- 4
src/screens/Planning/PlanningScreen.js View File

@@ -226,10 +226,6 @@ class PlanningScreen extends React.Component<Props, State> {
226 226
         );
227 227
     }
228 228
 
229
-    componentDidUpdate(prevProps: Props, prevState: State, prevContext: *): * {
230
-        console.log('coucou');
231
-    }
232
-
233 229
     render() {
234 230
         // console.log("rendering PlanningScreen");
235 231
         return (

+ 0
- 1
src/utils/URLHandler.js View File

@@ -36,7 +36,6 @@ export default class URLHandler {
36 36
     };
37 37
 
38 38
     static getUrlData({path, queryParams}: Object) {
39
-        console.log(path);
40 39
         let data = null;
41 40
         if (path !== null) {
42 41
             if (URLHandler.isClubInformationLink(path))

Loading…
Cancel
Save