discord / discord-example-app

Basic Discord app with examples
MIT License
515 stars 525 forks source link

Examples : InteractionResponseType.MODAL instead of InterationResponseType.APPLICATION_MODAL #21

Open yannisroy opened 1 year ago

yannisroy commented 1 year ago

I was struggling using modal interactions and getting "Interaction failed" errors.

Exemple here does not match correct response type : https://github.com/discord/discord-example-app/blob/main/examples/modal.js#L25

Solved when using InteractionResponseType.MODAL

Hattman commented 3 months ago

similar issue for the submit as well, https://github.com/discord/discord-example-app/blob/main/examples/modal.js#L64 changing it to InteractionType.MODAL_SUBMIT fixes the issue.