From be325664c06076e0d4ad76f7606452519cba876f Mon Sep 17 00:00:00 2001 From: guidari Date: Tue, 4 Jun 2024 14:27:24 -0300 Subject: [PATCH] fix: removed id from data --- packages/react/src/components/Dropdown/Dropdown.stories.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/packages/react/src/components/Dropdown/Dropdown.stories.js b/packages/react/src/components/Dropdown/Dropdown.stories.js index 5fe568302a63..e0347e877b51 100644 --- a/packages/react/src/components/Dropdown/Dropdown.stories.js +++ b/packages/react/src/components/Dropdown/Dropdown.stories.js @@ -49,28 +49,22 @@ export default { const items = [ { - id: 'option-0', text: 'Lorem, ipsum dolor sit amet consectetur adipisicing elit.', }, { - id: 'option-1', text: 'Option 1', }, { - id: 'option-2', text: 'Option 2', }, { - id: 'option-3', text: 'Option 3 - a disabled item', disabled: true, }, { - id: 'option-4', text: 'Option 4', }, { - id: 'option-5', text: 'Option 5', }, ];