Skip to content
New issue

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

Uncaught TypeError: Cannot read properties of undefined (reading 'access_token') in navbar.jsx #2

Open
jeffclaybrook opened this issue Dec 3, 2023 · 1 comment

Comments

@jeffclaybrook
Copy link

jeffclaybrook commented Dec 3, 2023

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!

@ayushku-dev
Copy link

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?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants