forked from vergnet/application-amicale
Removed logs
This commit is contained in:
parent
9f74e64d70
commit
ebbd4df591
4 changed files with 0 additions and 8 deletions
|
@ -87,7 +87,6 @@ class ErrorView extends React.PureComponent<Props, State> {
|
|||
}
|
||||
|
||||
goToLogin = () => {
|
||||
console.log(this.props.route);
|
||||
this.props.navigation.navigate("login",
|
||||
{
|
||||
screen: 'login',
|
||||
|
|
|
@ -40,7 +40,6 @@ class PlanningDisplayScreen extends React.Component<Props, State> {
|
|||
|
||||
if (this.props.route.params.data !== undefined) {
|
||||
this.displayData = this.props.route.params.data;
|
||||
console.log(this.displayData);
|
||||
this.eventId = this.displayData.id;
|
||||
this.shouldFetchData = false;
|
||||
this.errorCode = 0;
|
||||
|
@ -69,7 +68,6 @@ class PlanningDisplayScreen extends React.Component<Props, State> {
|
|||
|
||||
onFetchSuccess = (data: Object) => {
|
||||
this.displayData = data;
|
||||
console.log(this.displayData);
|
||||
this.setState({loading: false});
|
||||
};
|
||||
|
||||
|
|
|
@ -226,10 +226,6 @@ class PlanningScreen extends React.Component<Props, State> {
|
|||
);
|
||||
}
|
||||
|
||||
componentDidUpdate(prevProps: Props, prevState: State, prevContext: *): * {
|
||||
console.log('coucou');
|
||||
}
|
||||
|
||||
render() {
|
||||
// console.log("rendering PlanningScreen");
|
||||
return (
|
||||
|
|
|
@ -36,7 +36,6 @@ export default class URLHandler {
|
|||
};
|
||||
|
||||
static getUrlData({path, queryParams}: Object) {
|
||||
console.log(path);
|
||||
let data = null;
|
||||
if (path !== null) {
|
||||
if (URLHandler.isClubInformationLink(path))
|
||||
|
|
Loading…
Reference in a new issue