I have an angular application using gRPC API via gRPC-web. It is able to retrieve the data however the network tab shows it is using HTTP/1.1 protocol.
My understanding is that gRPC uses HTTP2 protocol for communication (which is faster than HTTP1) - Is this not the case?
I have added additional screenshots of response headers and payload for more information.
Updating the question as requested:
gRPC.io website (https://grpc.io/blog/state-of-grpc-web/) has a diagram which shows that browser and gRPC-web can communicate via HTTP2. How can I change the angular code to use HTTP2?