async componentDidMount()

in assets/src/modules/pastPurchases/PastPurchases.tsx [36:49]


  async componentDidMount() {
    const userInfo = await Auth.currentUserInfo();
    this.setState({ userInfo })

    try {
      const orders = await this.listOrders();
      this.setState({ 
        orders: orders,
        isLoading: false
     });
    } catch (e) {
      alert(e);
    }
  }