async componentDidMount()

in assets/src/common/friendRecommendations/FriendRecommendations.tsx [26:33]


  async componentDidMount() {
    try {
      const friends = await this.getFriends();
      this.setState({ friends });
    } catch (e) {
      alert(e);
    }
  }