diff --git a/docs/components/reference.mdx b/docs/components/reference.mdx index 95252d7f72..f8579be410 100644 --- a/docs/components/reference.mdx +++ b/docs/components/reference.mdx @@ -98,7 +98,7 @@ Action Rows can contain: ```json { - "flags": 32768 + "flags": 32768, "components": [ { "type": 1, diff --git a/docs/components/using-message-components.mdx b/docs/components/using-message-components.mdx index f43f8271e8..a409559135 100644 --- a/docs/components/using-message-components.mdx +++ b/docs/components/using-message-components.mdx @@ -39,7 +39,7 @@ All content must be sent as components instead of using the standard message for { "type": 10, "content": "This is a message using the Text Display component" - }, + } ] } ``` @@ -59,7 +59,7 @@ To send a message with multiple components, you can include multiple component o { "type": 10, "content": "This is another Text Display component!" - }, + } ] } ```