Skip to content

Commit 24e0fef

Browse files
committed
Fix semicolon lint error
1 parent b1abddd commit 24e0fef

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

components/SearchBar/SearchBar.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ class SearchBar extends Component {
6767

6868
handleSuggestionsUpdate(requestNo, data) {
6969
if (requestNo === this.state.maxRequestNo) {
70-
console.log('SUGGESTIONS', data);
70+
console.log('SUGGESTIONS', data)
7171
this.setState({loading: false, suggestions: data, selectedSuggestionIdx: null})
7272
}
7373
}

components/SearchSuggestions/SearchSuggestions.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ class SearchSuggestions extends Component {
102102

103103
const hide = this.props.hideSuggestionsWhenEmpty &&
104104
(!recentList || !recentList.length) &&
105-
(!popularList || !popularList.length);
105+
(!popularList || !popularList.length)
106106

107107
return hide ? (<div></div>) : (
108108
<div className={ ssClasses }>

0 commit comments

Comments
 (0)