We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
Whenever I add the {access_token ? <>...<> : <>...<>} part of the Navbar code, I get the following error:
Uncaught TypeError: Cannot read properties of undefined (reading 'access_token') in navbar.jsx
Where do I set the value of the access_token?
Any feedback would be appreciated!
The text was updated successfully, but these errors were encountered:
Actually the value of access_token is fetched from App component through UserContext.
export const UserContext = createContext({});
useEffect(() => { let userInSession = lookInSesseion("user");
userInSession ? setUserAuth(JSON.parse(userInSession)) : setUserAuth({ access_token : null }); }, [])
Do you have this declared in your App.jsx file?
Sorry, something went wrong.
No branches or pull requests
Hi,
Whenever I add the {access_token ? <>...<> : <>...<>} part of the Navbar code, I get the following error:
Uncaught TypeError: Cannot read properties of undefined (reading 'access_token') in navbar.jsx
Where do I set the value of the access_token?
Any feedback would be appreciated!
The text was updated successfully, but these errors were encountered: