diff --git a/apps/v4/content/docs/components/radix/chart.mdx b/apps/v4/content/docs/components/radix/chart.mdx
index 8d9e1408881..379ea47693e 100644
--- a/apps/v4/content/docs/components/radix/chart.mdx
+++ b/apps/v4/content/docs/components/radix/chart.mdx
@@ -595,7 +595,7 @@ This prop adds keyboard access and screen reader support to your charts.
To enable RTL support in shadcn/ui, see the [RTL configuration guide](/docs/rtl).
@@ -44,7 +44,7 @@ npm install @base-ui/react
Update the import paths to match your project setup.
@@ -256,55 +256,55 @@ export function ExampleComboboxMultiple() {
A simple combobox with a list of frameworks.
-
+
### Multiple
A combobox with multiple selection using `multiple` and `ComboboxChips`.
-
+
### Clear Button
Use the `showClear` prop to show a clear button.
-
+
### Groups
Use `ComboboxGroup` and `ComboboxSeparator` to group items.
-
+
### Custom Items
You can render a custom component inside `ComboboxItem`.
-
+
### Invalid
Use the `aria-invalid` prop to make the combobox invalid.
-
+
### Disabled
Use the `disabled` prop to disable the combobox.
-
+
### Auto Highlight
Use the `autoHighlight` prop to automatically highlight the first item on filter.
-
+
### Popup
You can trigger the combobox from a button or any other component by using the `render` prop. Move the `ComboboxInput` inside the `ComboboxContent`.
-
+
### Input Group