async componentDidMount()

in assets/src/modules/signup/Home.tsx [81:93]


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

    try {
      this.bindBikeStationsToMap();
    } catch (e) {
      alert(e);
    }

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