Skip to content

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jamdelion committed Nov 14, 2024
1 parent 55ef0bd commit ab2f1fc
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export const trackAllowListAnswers: Operation = async () => {

const id = await updateLowcalSessionAllowListAnswers(
sessionId,
allowListAnswers
allowListAnswers,
);
if (id) updatedSessionIds.push(id);
}
Expand Down Expand Up @@ -104,7 +104,7 @@ export const getSubmittedUnAnalyzedSessionIds = async (): Promise<string[]> => {
*/
export const updateLowcalSessionAllowListAnswers = async (
sessionId: string,
allowListAnswers: Passport["data"]
allowListAnswers: Passport["data"],
): Promise<string> => {
try {
const mutation = gql`
Expand All @@ -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}`,
);
}
};

0 comments on commit ab2f1fc

Please sign in to comment.