This repository has been archived by the owner on Dec 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 386
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(RefreshCache): add missing space
- Loading branch information
Showing
1 changed file
with
5 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,8 +28,9 @@ import { InstantSearch, SearchBox, Hits } from 'react-instantsearch/dom'; | |
class App extends Component { | ||
constructor(props) { | ||
super(props); | ||
|
||
this.state = { | ||
refresh: false, | ||
refresh: false | ||
}; | ||
} | ||
|
||
|
@@ -74,8 +75,9 @@ import { InstantSearch, SearchBox, Hits } from 'react-instantsearch/dom'; | |
class App extends Component { | ||
constructor(props) { | ||
super(props); | ||
|
||
this.state = { | ||
refresh: false, | ||
refresh: false | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
samouss
Author
Collaborator
|
||
}; | ||
} | ||
|
||
|
@@ -86,6 +88,7 @@ class App extends Component { | |
onSearchStateChange = () => { | ||
this.setState({ refresh: false }); | ||
}; | ||
|
||
render() { | ||
return ( | ||
<InstantSearch | ||
|
We have trailing commas no?