Removed logs

This commit is contained in:
Arnaud Vergnet 2020-04-10 00:29:09 +02:00
parent 9f74e64d70
commit ebbd4df591
4 changed files with 0 additions and 8 deletions

View file

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

View file

@ -40,7 +40,6 @@ class PlanningDisplayScreen extends React.Component<Props, State> {
if (this.props.route.params.data !== undefined) { if (this.props.route.params.data !== undefined) {
this.displayData = this.props.route.params.data; this.displayData = this.props.route.params.data;
console.log(this.displayData);
this.eventId = this.displayData.id; this.eventId = this.displayData.id;
this.shouldFetchData = false; this.shouldFetchData = false;
this.errorCode = 0; this.errorCode = 0;
@ -69,7 +68,6 @@ class PlanningDisplayScreen extends React.Component<Props, State> {
onFetchSuccess = (data: Object) => { onFetchSuccess = (data: Object) => {
this.displayData = data; this.displayData = data;
console.log(this.displayData);
this.setState({loading: false}); this.setState({loading: false});
}; };

View file

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

View file

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