Skip to content

Commit

Permalink
docs: fix typos in external field docs
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisvxd committed Dec 18, 2024
1 parent 361e5f9 commit c7b45d7
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions apps/docs/pages/docs/api-reference/fields/external.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,7 @@ const config = {

Customize what will be displayed in the footer of the modal.

```tsx {13} copy
```tsx {13-15} copy
const config = {
components: {
Example: {
Expand Down Expand Up @@ -585,7 +585,9 @@ const config = {
{ title: "Goodbye, world", description: "Lorem ipsum 2" },
];
},
renderFooter: ({ items }) => <span>{items.length} results</span>,
renderFooter: ({ items }) => (
<b>Custom footer with {items.length} results</b>
),
},
},
render: ({ data }) => {
Expand Down

0 comments on commit c7b45d7

Please sign in to comment.