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;