diff --git a/packages/discord.js/src/structures/AutocompleteInteraction.js b/packages/discord.js/src/structures/AutocompleteInteraction.js index c44188af4ca7..e54a71f0bd75 100644 --- a/packages/discord.js/src/structures/AutocompleteInteraction.js +++ b/packages/discord.js/src/structures/AutocompleteInteraction.js @@ -86,9 +86,7 @@ class AutocompleteInteraction extends BaseInteraction { await this.client.rest.post(Routes.interactionCallback(this.id, this.token), { body: { type: InteractionResponseType.ApplicationCommandAutocompleteResult, - data: { - choices: options, - }, + data: { choices: this.client.options.jsonTransformer(options) }, }, auth: false, });