Skip to content

Commit fccfc4a

Browse files
committed
Updated dashboard event to use the open api
1 parent 021c080 commit fccfc4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

LearningHub.Nhs.WebUI/Services/DashboardService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ public async Task RecordDashBoardEventAsync(DashboardEventViewModel dashboardEve
150150
};
151151

152152
var content = new System.Net.Http.StringContent(JsonConvert.SerializeObject(eventEntity), Encoding.UTF8, "application/json");
153-
var client = await this.LearningHubHttpClient.GetClientAsync();
153+
var client = await this.OpenApiHttpClient.GetClientAsync();
154154

155155
var request = $"event/Create";
156156
var response = await client.PostAsync(request, content).ConfigureAwait(false);

0 commit comments

Comments
 (0)