From 969d4e6c4f8415f1278e26176f5068843f969a64 Mon Sep 17 00:00:00 2001 From: Bilal Mahmoud Date: Wed, 11 Dec 2024 23:09:42 +0100 Subject: [PATCH] fix: eslint --- apps/hash-api/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/hash-api/src/index.ts b/apps/hash-api/src/index.ts index d75a62096dd..bf98282ce0d 100644 --- a/apps/hash-api/src/index.ts +++ b/apps/hash-api/src/index.ts @@ -545,7 +545,7 @@ const main = async () => { const rpcHost = getRequiredEnv("HASH_GRAPH_RPC_HOST"); const rpcPort = parseInt(process.env.HASH_GRAPH_RPC_PORT ?? "4002", 10); - app.get("/rpc/echo", (req, res, next) => { + app.get("/rpc/echo", (req, res) => { // eslint-disable-next-line func-names const effect = Effect.gen(function* () { const textQueryParam = req.query.text;