From 1d71797f536bd6c99486e00f046d233db9590cef Mon Sep 17 00:00:00 2001 From: MathMan05 Date: Wed, 4 Mar 2026 15:53:00 -0600 Subject: [PATCH] fix typo --- src/api/routes/interactions/index.ts | 2 +- src/util/imports/Interactions.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/api/routes/interactions/index.ts b/src/api/routes/interactions/index.ts index 65b8a02ef..fc8531843 100644 --- a/src/api/routes/interactions/index.ts +++ b/src/api/routes/interactions/index.ts @@ -139,7 +139,7 @@ router.post("/", route({}), async (req: Request, res: Response) => { type: body.type, commandType: body.data.type, commandName: body.data.name, - mesageId: body.message_id, + messageId: body.message_id, }); res.sendStatus(204); diff --git a/src/util/imports/Interactions.ts b/src/util/imports/Interactions.ts index 9ebe1cae5..304241cdd 100644 --- a/src/util/imports/Interactions.ts +++ b/src/util/imports/Interactions.ts @@ -26,7 +26,7 @@ interface PendingInteraction { channelId?: string; guildId?: string; nonce?: string; - mesageId?: string; + messageId?: string; type: InteractionType; commandType: ApplicationCommandType; commandName: string;