fix: linting errors

This commit is contained in:
diced
2025-06-04 23:54:58 -07:00
parent 1703cee75a
commit 856fa00d1d
2 changed files with 1 additions and 2 deletions

View File

@@ -1,7 +1,6 @@
import { config } from '@/lib/config';
import { verifyPassword } from '@/lib/crypto';
import { prisma } from '@/lib/db';
import { fetchApi } from '@/lib/fetchApi';
import { Anchor, Button, Modal, PasswordInput } from '@mantine/core';
import { GetServerSideProps, InferGetServerSidePropsType } from 'next';
import { useRouter } from 'next/router';

View File

@@ -183,7 +183,7 @@ async function main() {
// setting the inner request.body so that next.js can access it.
req.raw.body = parsedBody;
done(null, parsedBody);
} catch (err) {
} catch {
done(null, {});
}
},