From 717f8536e0ed49e9d998c9ecc359ec4649dcfafe Mon Sep 17 00:00:00 2001 From: Vojtech Mares Date: Sat, 9 Sep 2023 01:12:45 +0200 Subject: [PATCH] fix(livez.ts): linting error --- src/pages/api/livez.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/api/livez.ts b/src/pages/api/livez.ts index 129aa22..4b8bb19 100644 --- a/src/pages/api/livez.ts +++ b/src/pages/api/livez.ts @@ -1,7 +1,7 @@ import type {NextApiRequest, NextApiResponse} from 'next' // GET /api/livez -export default async function handle( +export default function handle( req: NextApiRequest, res: NextApiResponse, ) {