From 8d509fd2ee633c971bec702f2245025187b716ef Mon Sep 17 00:00:00 2001 From: Lala Sabathil Date: Fri, 5 Sep 2025 17:58:20 +0200 Subject: [PATCH] note that we receive partial components for modal interactions Resolves https://canary.discord.com/channels/1317206872763404478/1317208024682725426/1413548555070865448 --- docs/interactions/receiving-and-responding.mdx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/interactions/receiving-and-responding.mdx b/docs/interactions/receiving-and-responding.mdx index 2549f6b626..6c9fdf0ec1 100644 --- a/docs/interactions/receiving-and-responding.mdx +++ b/docs/interactions/receiving-and-responding.mdx @@ -288,11 +288,11 @@ Not all message fields are currently supported. ###### Modal -| Field | Type | Description | -|------------|--------------------------------------------------------------------|----------------------------------------------------------------| -| custom_id | string | Developer-defined identifier for the modal, max 100 characters | -| title | string | Title of the popup modal, max 45 characters | -| components | array of [components](/docs/components/reference#component-object) | Between 1 and 5 (inclusive) components that make up the modal | +| Field | Type | Description | +|------------|----------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------| +| custom_id | string | Developer-defined identifier for the modal, max 100 characters | +| title | string | Title of the popup modal, max 45 characters | +| components | array of partial [components](/docs/components/reference#component-object) | Between 1 and 5 (inclusive) components that make up the modal, see each component's interaction response structure for details. | :::warn If your application responds with user data, you should use [`allowed_mentions`](/docs/resources/message#allowed-mentions-object) to filter which mentions in the content actually ping.