Option 1. If you want to support multiple user logins across different tabs, consider storing the authentication session details in session storage instead of local storage.(Session storage is tab-specific, meaning each tab maintains its own session. Closing the tab clears the session).
Option 2. If you need multiple user logins within the same tab, you must log out and sign in again. There is an option to clear the session on logout, ensuring that each login prompts for user credentials.