I am trying to grab the local storage variable and send it inside of a GET HTTP request inside of the headers, but when it hits the API the token is null. I console log the token and it shows up just fine. I'm not sure what I'm doing wrong. Help is appreciated.
getUserByToken(): Observable<User> {
 const userToken = localStorage.getItem('authToken');
  
 console.log(userToken);//displays just fine
  
 const httpHeaders = new HttpHeaders();
 httpHeaders.append('Authorization', 'Bearer ' + userToken);//Shows up null 
  
 console.log('Bearer ' + userToken);//logs just fine 
  
 httpHeaders.append('Content-Type', 'application/json'); 
    
 return this.http.get<User>(API_USERS_URL, { headers: httpHeaders });
} 
    