Skip to content

Commit

Permalink
chore(select): Fix storybook build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
anicholls committed Jan 27, 2020
1 parent afdcd8c commit 8415efb
Showing 1 changed file with 1 addition and 15 deletions.
16 changes: 1 addition & 15 deletions modules/form-field/react/stories/stories_Select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,6 @@ import {Select, SelectOption} from '../../../select/react/index';
const hintText = 'Helpful text goes here.';
const hintId = 'error-desc-id';

const Table = styled('table')({
width: '100%',
thead: {
textAlign: 'left',
paddingBottom: 16,
},
'td, th': {
minWidth: 100,
paddingBottom: 16,
paddingRight: 16,
textAlign: 'left',
},
});

storiesOf('Components|Inputs/Select/React/Top Label', module)
.addParameters({component: Select})
.addDecorator(withReadme(README))
Expand Down Expand Up @@ -232,7 +218,7 @@ storiesOf('Components|Inputs/Select/React/Visual Testing', module)
<StaticStates>
<ComponentStatesTable
rowProps={[
{label: 'Default'},
{label: 'Default', props: {}},
{label: 'Alert', props: {error: Select.ErrorType.Alert}},
{label: 'Error', props: {error: Select.ErrorType.Error}},
]}
Expand Down

0 comments on commit 8415efb

Please sign in to comment.