Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
magicmatatjahu committed Jun 29, 2021
1 parent 664fc52 commit 0b8d4c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/Message.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ function Example({ type = 'headers', message }) {
<Text newLines={2}>
{ex.name && <Text newLines={2}>**{ex.name}**</Text>}
{ex.summary && <Text newLines={2}>{ex.summary}</Text>}
<CodeBlock language='json'>{JSON.stringify(ex, null, 2)}</CodeBlock>
<CodeBlock language='json'>{JSON.stringify(ex.example, null, 2)}</CodeBlock>
</Text>
))}
</>
Expand Down

0 comments on commit 0b8d4c7

Please sign in to comment.