Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/components/using-message-components.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ All content must be sent as components instead of using the standard message for

```json
{
"flags": "32768",
"flags": 32768,
"components": [
{
"type": 10,
Expand All @@ -46,7 +46,7 @@ To send a message with multiple components, you can include multiple component o

```json
{
"flags": "32768",
"flags": 32768,
"components": [
{
"type": 10,
Expand All @@ -68,7 +68,7 @@ For example, you can create a message with an Action Row component that contains

```json
{
"flags": "32768",
"flags": 32768,
"components": [
{
"type": 10,
Expand Down Expand Up @@ -103,4 +103,4 @@ See the [list of supported component types](/docs/components/reference#component

You can use this information to respond to the interaction, update the message, or perform other actions, such as displaying a modal based on the user's input.

Check out the [Interactions documentation](/docs/interactions/overview) for more information on handling interactions and responding to user input from interactive components.
Check out the [Interactions documentation](/docs/interactions/overview) for more information on handling interactions and responding to user input from interactive components.