From 38a0881240939e4f953c389e37367cb8bb2e96d3 Mon Sep 17 00:00:00 2001 From: Mia <49593536+mia-pi-git@users.noreply.github.com> Date: Mon, 28 Oct 2024 20:30:43 -0500 Subject: [PATCH] Fix typo --- src/actions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/actions.ts b/src/actions.ts index 3f52cfc..5289827 100644 --- a/src/actions.ts +++ b/src/actions.ts @@ -417,7 +417,7 @@ export const actions: {[k: string]: QueryHandler} = { const suspect = await tables.suspects.get(formatid); if (suspect) { - const reqs = {elo: suspect.elo, gxe: suspect.gxe, coil: suspect.gxe}; + const reqs = {elo: suspect.elo, gxe: suspect.gxe, coil: suspect.coil}; for (const rating of [p1rating, p2rating]) { checkSuspectVerified(rating, suspect, reqs); }