Skip to content

Commit

Permalink
fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
LittleLittleCloud committed Oct 25, 2023
1 parent 590fb5b commit 471a1a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/frontend/Services/ApiClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public sealed class ApiClient(HttpClient httpClient)

public async Task<bool> ShowLogoutButtonAsync()
{
var response = await _httpClient.GetAsync("api/enableLogout");
var response = await httpClient.GetAsync("api/enableLogout");
response.EnsureSuccessStatusCode();

return await response.Content.ReadFromJsonAsync<bool>();
Expand Down

0 comments on commit 471a1a3

Please sign in to comment.