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 });