Angular - HTTP Client
Why does this interceptor fail to add the token?
```typescript
intercept(req, next) {
const token = this.authService.getToken();
const cloned = req.clone();
cloned.headers.set('Authorization', `Bearer ${token}`);
return next.handle(cloned);
}
```
