diff --git a/examples/ts/example-bots/commands/interactions/commands/slash/tag.ts b/examples/ts/example-bots/commands/interactions/commands/slash/tag.ts index 3a63d2aa..00fce5e8 100644 --- a/examples/ts/example-bots/commands/interactions/commands/slash/tag.ts +++ b/examples/ts/example-bots/commands/interactions/commands/slash/tag.ts @@ -22,7 +22,7 @@ export default class TagCommand extends BaseSlashCommand { { name: 'name', description: 'Tag to show', - onAutoComplete: (context: Interaction.InteractionCommandContext) => { + onAutoComplete: (context: Interaction.InteractionAutoCompleteContext) => { let choices: Array<{name: string, value: string}>; if (context.value) { const value = context.value.toLowerCase();