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
I found an issue that when I click the logout button in my app everything appears to work as its supposed to. The app is no longer able to access the pages for logged in users and the login and create account buttons are all that appear in my user menu. However, when I close the app and reopen it , the last user is still logged in. I found the following error in the code. The logout function is not actually deleting the token on logout due to the error. Line 207 of the current code file needs to be change from:
tokenStore.removeItem('fbtoken');
to:
tokenStore.removeItem('fbAccessToken');
The text was updated successfully, but these errors were encountered:
I found an issue that when I click the logout button in my app everything appears to work as its supposed to. The app is no longer able to access the pages for logged in users and the login and create account buttons are all that appear in my user menu. However, when I close the app and reopen it , the last user is still logged in. I found the following error in the code. The logout function is not actually deleting the token on logout due to the error. Line 207 of the current code file needs to be change from:
tokenStore.removeItem('fbtoken');
to:
tokenStore.removeItem('fbAccessToken');
The text was updated successfully, but these errors were encountered: