async handleTierCtaClicked()

in public/js/account.js [44:53]


  async handleTierCtaClicked(tier) {
    const isSubscribed = this.model.isSubscribedTo(tier);

    if (isSubscribed) {
      await this.unsubscribeFromShow(tier);
    } else {
      await this.subscribeToShow(tier);
    }
    this.view.render();
  }