Skip to content

Commit 508f1ec

Browse files
committed
fix: stories
1 parent 8c05c77 commit 508f1ec

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/components/form/Form/ComplexForm.stories.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -286,16 +286,16 @@ const Template: StoryFn<typeof Form> = (args) => {
286286
tooltip="Additional field description"
287287
>
288288
<Select>
289-
<Item key="one">One</Item>
290-
<Item key="two">Two</Item>
291-
<Item key="three">Three</Item>
289+
<Select.Item key="one">One</Select.Item>
290+
<Select.Item key="two">Two</Select.Item>
291+
<Select.Item key="three">Three</Select.Item>
292292
</Select>
293293
</Field>
294294
<Field name="combobox" label="ComboBox field">
295295
<ComboBox>
296-
<Item key="one">One</Item>
297-
<Item key="two">Two</Item>
298-
<Item key="three">Three</Item>
296+
<ComboBox.Item key="one">One</ComboBox.Item>
297+
<ComboBox.Item key="two">Two</ComboBox.Item>
298+
<ComboBox.Item key="three">Three</ComboBox.Item>
299299
</ComboBox>
300300
</Field>
301301
<Field

0 commit comments

Comments
 (0)