From 7dabcb65e043ce27fffd58ed9e8fe6978d927dec Mon Sep 17 00:00:00 2001 From: Vann-Dev Date: Sun, 22 Sep 2024 23:39:34 +0700 Subject: [PATCH] fix: build --- src/routes/guild/info.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/routes/guild/info.ts b/src/routes/guild/info.ts index fd485b6..ebc3b09 100644 --- a/src/routes/guild/info.ts +++ b/src/routes/guild/info.ts @@ -1,7 +1,7 @@ import { FastifyReply, FastifyRequest } from "fastify"; -export async function info(request: FastifyRequest, reply: FastifyReply) { - const params = request.params as { id: string }; +export async function info(_request: FastifyRequest, reply: FastifyReply) { + // const params = request.params as { id: string }; // const response = await fetch(`${process.env.DISCORD_API_BASE_URL}/guilds/${params.id}`, { // headers: {