From 5a18512021e86f13aee5b5f9689439f37d832915 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Sat, 22 Oct 2022 01:24:48 +0200 Subject: [PATCH] Fix linting --- functions/src/index.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/functions/src/index.ts b/functions/src/index.ts index 808e030..edb22a1 100644 --- a/functions/src/index.ts +++ b/functions/src/index.ts @@ -117,7 +117,10 @@ app.get("/entries", async (req: Request, res: Response) => { return; } - if (!Number.isNaN(voteIndex) && (voteIndex < 0 || voteIndex >= (vote.data()?.options ?? []).length)) { + if ( + !Number.isNaN(voteIndex) && + (voteIndex < 0 || voteIndex >= (vote.data()?.options ?? []).length) + ) { res.status(400).json({error: "Invalid vote index"}); return; }