Fix linting

This commit is contained in:
Gabriel Tofvesson 2022-10-22 01:24:48 +02:00
parent 83ddd9f15d
commit 5a18512021

View File

@ -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;
}