diff --git a/src/Templates/Boilerplate/Bit.Boilerplate/src/Client/Boilerplate.Client.Core/Services/AuthManager.cs b/src/Templates/Boilerplate/Bit.Boilerplate/src/Client/Boilerplate.Client.Core/Services/AuthManager.cs index 0e241afb2c..bc9ae8b128 100644 --- a/src/Templates/Boilerplate/Bit.Boilerplate/src/Client/Boilerplate.Client.Core/Services/AuthManager.cs +++ b/src/Templates/Boilerplate/Bit.Boilerplate/src/Client/Boilerplate.Client.Core/Services/AuthManager.cs @@ -130,7 +130,7 @@ async Task RefreshTokenImplementation() { "RefreshTokenRequestedBy", requestedBy } }, nonInterrupting: exp is ReusedRefreshTokenException); - if (exp is UnauthorizedException) + if (exp is UnauthorizedException) // refresh token is also invalid. { await ClearTokens(); }