Skip to content

Commit 1e4fdc0

Browse files
committed
fix: Autocomplete hardcoded file type that cause error on compiled library; fix: indentation on gulpfile
1 parent 92fcd38 commit 1e4fdc0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

components/autocomplete/Autocomplete.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { isValuePresent } from '../utils/utils';
88
import { AUTOCOMPLETE } from '../identifiers';
99
import InjectChip from '../chip/Chip';
1010
import InjectInput from '../input/Input';
11-
import events from '../utils/events.jsx';
11+
import events from '../utils/events';
1212

1313
const POSITION = {
1414
AUTO: 'auto',

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const paths = {
77
js: {
88
src: [
99
'./components/**/*.js',
10-
'./components/**/*.jsx',
10+
'./components/**/*.jsx',
1111
'!./components/**/*.spec.js',
1212
'!./components/**/__test__',
1313
'!./components/__mocks__/**/*.js'

0 commit comments

Comments
 (0)