You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a user logs out and logs into another account, the session data is not reset for the new user
This will trigger the journals screen to retrieve the id of the last opened journal (which is owned by the previous user) and query for it. Fortunately the query fails because said journal is not owned by the user
However, if a user creates a new entry, the new entry will be created under the other user's journal
Potential Solutions
Hash the session storage key with the user's ID to facilitate the storage of info for multiple accounts on one device
Clear out session storage info when a user logs out