Skip to content

Commit

Permalink
chore: fix misspelled variable (#3054)
Browse files Browse the repository at this point in the history
  • Loading branch information
parterburn authored and bobylito committed Aug 8, 2018
1 parent ede9460 commit 42a6f9a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dev/app/builtin/stories/geo-search.stories.js
Expand Up @@ -225,17 +225,17 @@ export default () => {
'with position from Places',
wrapWithHitsAndConfiguration((container, start) =>
injectGoogleMaps(() => {
const placesElemeent = document.createElement('input');
const placesElement = document.createElement('input');
const mapElement = document.createElement('div');
mapElement.style.height = '500px';
mapElement.style.marginTop = '20px';

container.appendChild(placesElemeent);
container.appendChild(placesElement);
container.appendChild(mapElement);

window.search.addWidget(
instantsearchPlacesWidget({
container: placesElemeent,
container: placesElement,
defaultPosition: [position.lat, position.lng],
})
);
Expand Down

0 comments on commit 42a6f9a

Please sign in to comment.