From 0e156f4883757b691596fa6054b9b559d883d6a1 Mon Sep 17 00:00:00 2001 From: nick-delirium Date: Tue, 28 Mar 2023 17:10:02 +0200 Subject: [PATCH] change(ui): typo fix --- frontend/app/duck/sessions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/app/duck/sessions.ts b/frontend/app/duck/sessions.ts index 90cf7b8f0..f83209a8d 100644 --- a/frontend/app/duck/sessions.ts +++ b/frontend/app/duck/sessions.ts @@ -433,7 +433,7 @@ export const fetchV2 = (sessionId: string) => let [events, notes] = await Promise.all([ apiGet(`/sessions/${sessionId}/events`, dispatch), - apiGet(`/sessions/${sessionId}/notes`, dispatch,), + apiGet(`/sessions/${sessionId}/notes`, dispatch), ]); if (notes) { dispatch({ type: FETCH_NOTES.SUCCESS, data: notes.data });