Untitled

 avatar
unknown
javascript
a year ago
333 B
3
Indexable
async firstUpdated() {
    super.firstUpdated();
    this.businessCustomer = this.isBusinessCustomer();
    try {
      this.sessionData = await AabFooter.getSessionData();
      if (this.sessionData) {
        this.representatives = await AabFooter.getRepresentatives();
      }
    } catch (err) {
      return undefined;
    }
  }
Editor is loading...
Leave a Comment