Redux: Use a Switch Statement to Handle Multiple Actions failing two tests

This code keeps failing the test for:
Dispatching loginUser should update the authenticated property in the store state to true.

Dispatching logoutUser should update the authenticated property in the store state to false.

Am I missing an obvious error?

Thank you.

Your code so far


const defaultState = {
  authenticated: false
};

const authReducer = (state = defaultState, action) => {
  // change code below this line
  switch (action.type) {
    case 'LOGIN': return {autheticated: true};
   
    case 'LOGOUT': return {authenticated: false};
    
    default: return defaultState;
    
  }
  // change code above this line
};

const store = Redux.createStore(authReducer);

const loginUser = () => {
  return {
    type: 'LOGIN'
  }
};

const logoutUser = () => {
  return {
    type: 'LOGOUT'
  }
};

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36.

Link to the challenge:

Found the small spelling error…