I have an SfGrid component in my page with an odatav4 data source. My odata api uses jwt authentication, so I am using an http interceptor to intercept each call to the server, check whether the current token has expired, and if so, send a refresh request containing the refresh token. The problem is, the request from the grid still uses the old token, which causes a 401 error and shows an empty grid. I tried calling StateHasChanged after receiving the new token but it doesn't solve the issue. Any ideas as to what can I do?