Authentication token expired

Hello , As a workaround, we recommend updating the open-source code manually to include the following function for session renewal:

sessionWillRenewAccessToken(renewal) {
  // secure mode
  if (authToken) {
    renewal.renewWithAuthToken(authToken);
    return;
  }

  renewal.renew();
},

This fix will apply to both the SDK and UI Kit, and we plan to release a fix for the UI Kit early next week.

Thank you.