I am using identify with a unique user id after the user logs in. I do this along with an account id that is tied to the data that the user is dealing with. If a user opens up a second tab of my web application in the same web browser, and I call identify a second time using the same user id, but a different account id, can I expect that to cause reporting issues? I am concerned that by calling identify for the user with a second account id, that the original browser tab, which continues to act on data associated with the first account, will get attributed to the second account.
If this would cause an issue, is there another technique I should use, such as using a method other than identify, to signifiy to aptrinsic that the user is working with different data between two tabs in the same browser? Thank you.