I have successfully integrated MSAL into a client-side library, and things are going smoothly so far.
My next goal is to enable Single Sign-On (SSO) by following the instructions provided in the documentation at https://learn.microsoft.com/en-us/azure/active-directory/develop/msal-js-sso#automatically-select-account-on-azure-ad
The documentation mentions that I can include the sid claim in the authentication requests and then use that sid in another tab during the login process.
So my question now is: How can I retrieve the sid from tab A and reuse it in tab B? What is the process for doing this?