From ab2f1fca21443fe3e66e3dd64036d056306cecff Mon Sep 17 00:00:00 2001 From: Jo Humphrey <31373245+jamdelion@users.noreply.github.com> Date: Thu, 14 Nov 2024 17:08:53 +0000 Subject: [PATCH] Lint fix --- .../modules/webhooks/service/analyzeSessions/operations.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/api.planx.uk/modules/webhooks/service/analyzeSessions/operations.ts b/api.planx.uk/modules/webhooks/service/analyzeSessions/operations.ts index 0857b368e1..59110419eb 100644 --- a/api.planx.uk/modules/webhooks/service/analyzeSessions/operations.ts +++ b/api.planx.uk/modules/webhooks/service/analyzeSessions/operations.ts @@ -64,7 +64,7 @@ export const trackAllowListAnswers: Operation = async () => { const id = await updateLowcalSessionAllowListAnswers( sessionId, - allowListAnswers + allowListAnswers, ); if (id) updatedSessionIds.push(id); } @@ -104,7 +104,7 @@ export const getSubmittedUnAnalyzedSessionIds = async (): Promise => { */ export const updateLowcalSessionAllowListAnswers = async ( sessionId: string, - allowListAnswers: Passport["data"] + allowListAnswers: Passport["data"], ): Promise => { try { const mutation = gql` @@ -127,7 +127,7 @@ export const updateLowcalSessionAllowListAnswers = async ( return id; } catch (error) { throw new Error( - `Error updating allow_list_answers for lowcal_session ${sessionId}` + `Error updating allow_list_answers for lowcal_session ${sessionId}`, ); } };