async componentDidMount()

in assets/src/modules/signup/Rides.tsx [39:52]


  async componentDidMount() {
    if (!this.props.isAuthenticated) {
      return;
    }

    try {
      const rides = await this.rides();
      this.setState({ rides });
    } catch(e) {
      alert(e);
    }

    this.setState({ isLoading: false });
  }