My app is an Angular 14 + .Net 6 WebApi. It is running all good locally.
After deploying both onto respective Azure App Service, it gets 401 when Angular calls backend Api which has Authorize[role].
Found a difference which the angular webapp deployed on Azure App Service has no Authorization(with jwt token) in the request header. Not sure if this is the root cause.
The header from local running when triggering the call was as below.

And the one deployed on Azure App Service as below.

Any help or advice would be greatly appreciated.
I see there might be an approach by using Http inteceptor adding a custom header. I would probably take that as last resort if cannot find the root cause or other solutions.