async componentDidMount()

in src/App.tsx [52:58]


  async componentDidMount() {
    const authState: AuthState = await this._handleAuthStateChange({event: "init"});
    if (this.state.autologin && !authState.isAuthenticated) {
      // We are not authenticated and have been ask to autologin, initiate PKCE flow
      Auth.federatedSignIn();
    }
  }