Skip to content

Commit

Permalink
revert prettier changes
Browse files Browse the repository at this point in the history
  • Loading branch information
RODO94 committed Oct 29, 2024
1 parent 4a78d8d commit 0ce5aff
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export const trackAllowListAnswers: Operation = async () => {

const id = await updateLowcalSessionAllowListAnswers(
sessionId,
allowListAnswers
allowListAnswers,
);
if (id) updatedSessionIds.push(id);
}
Expand Down Expand Up @@ -101,7 +101,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 @@ -124,7 +124,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 0ce5aff

Please sign in to comment.