Skip to content
This repository was archived by the owner on Dec 23, 2022. It is now read-only.

Commit 2685b06

Browse files
committed
Lint the code.
1 parent fe576ad commit 2685b06

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stories/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ storiesOf('ChipInput', module)
214214
/>
215215
))
216216
.add('in a form', () => themed(
217-
<form onSubmit={e => {e.preventDefault(); action('onSubmit')()}}>
217+
<form onSubmit={e => { e.preventDefault(); action('onSubmit')() }}>
218218
<ChipInput
219219
onChange={action('onChange')}
220220
floatingLabelText='This is a single chip input inside a form. Note that pressing Enter does not submit the form if a chip is being added.'
@@ -236,6 +236,6 @@ storiesOf('ChipInput', module)
236236
fullWidth
237237
/>
238238
<br />
239-
<input type="text" />
239+
<input type='text' />
240240
</form>
241241
))

0 commit comments

Comments
 (0)