From aaa0e97eecedee4af4958580bae81ba5a8f87802 Mon Sep 17 00:00:00 2001 From: TJ Egan Date: Tue, 6 Oct 2020 10:57:34 -0700 Subject: [PATCH] fix(tabs): remove role knob --- packages/react/src/components/Tabs/Tabs-story.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/react/src/components/Tabs/Tabs-story.js b/packages/react/src/components/Tabs/Tabs-story.js index cd7a7e8872ab..f7285fe7a607 100644 --- a/packages/react/src/components/Tabs/Tabs-story.js +++ b/packages/react/src/components/Tabs/Tabs-story.js @@ -35,7 +35,6 @@ const props = { className: 'some-class', light: boolean('Light variant (light)', false), selected: number('The index of the selected tab (selected in )', 1), - role: text('ARIA role (role in )', 'navigation'), // Disabling action logger for `` for now given it seems to be significantly slowing down Storybook // onClick: action('onClick'), // onKeyDown: action('onKeyDown'), @@ -53,7 +52,6 @@ const props = { tab: () => ({ disabled: boolean('Disabled (disabled in )', false), href: text('The href for tab (href in )', '#'), - role: text('ARIA role (role in )', 'presentation'), tabIndex: number('Tab index (tabIndex in )', 0), onClick: action('onClick'), onKeyDown: action('onKeyDown'),