From d3601fb8f82d9c77289e747db34e02d4d05f76e0 Mon Sep 17 00:00:00 2001 From: MathMan05 Date: Mon, 2 Mar 2026 18:40:39 -0600 Subject: [PATCH] remove logs --- .../#interaction_id/#interaction_token/callback.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/api/routes/interactions/#interaction_id/#interaction_token/callback.ts b/src/api/routes/interactions/#interaction_id/#interaction_token/callback.ts index 252766c92..e0faad59b 100644 --- a/src/api/routes/interactions/#interaction_id/#interaction_token/callback.ts +++ b/src/api/routes/interactions/#interaction_id/#interaction_token/callback.ts @@ -115,7 +115,6 @@ router.post("/", route({}), async (req: Request, res: Response) => { break; case InteractionCallbackType.UPDATE_MESSAGE: { - console.log(body.type); if (!interaction.mesageId) throw new HTTPError("no. That was not a message"); const message = await Message.findOneOrFail({ relations: { @@ -142,9 +141,7 @@ router.post("/", route({}), async (req: Request, res: Response) => { throw new HTTPError("Content length over max character limit"); } if (body.data.components) stripNull(body.data.components); - console.log(body.data.components); message.embeds = body.data.embeds || []; - console.log(message); const handle = body.data.components ? handleComps(body.data.components, message.flags) : undefined; await handle?.(message.id, message.author as User, message.channel); message.components = body.data.components;