Skip to content
This repository has been archived by the owner on Feb 2, 2023. It is now read-only.

Commit

Permalink
fix(api): use staging api for now
Browse files Browse the repository at this point in the history
  • Loading branch information
vvo committed Apr 7, 2016
1 parent 8dad71c commit e3ebbda
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/places.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@ export default function places({
container
}) {
const placesInstance = new EventEmitter();
const client = algoliasearch.initPlaces('6TZ2RYGYRQ', '20b9e128b7e37ff38a4e86b08477980b');
const client = algoliasearch.initPlaces(
'6TZ2RYGYRQ',
'20b9e128b7e37ff38a4e86b08477980b',
{hosts: ['places-de-1.algolia.net']} // use staging for now, FIXME
);

// https:/algolia/autocomplete.js#options
const options = {
Expand Down

0 comments on commit e3ebbda

Please sign in to comment.