You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1145: Fix getting started documentation of autocomplete client r=bidoubiwa a=bidoubiwa
The autocomplete getting started guide incorrectly instantiated the autocomplete client.
It should be
```
const searchClient = meilisearchAutocompleteClient({
url: 'https://ms-adf78ae33284-106.lon.meilisearch.io', // Host
apiKey: 'a63da4928426f12639e19d62886f621130f3fa9ff3c7534c5d179f0f51c4f303' // API key
})
```
and not
```
const searchClient = meilisearchAutocompleteClient(
'https://ms-adf78ae33284-106.lon.meilisearch.io', // Host
'a63da4928426f12639e19d62886f621130f3fa9ff3c7534c5d179f0f51c4f303' // API key
)
```
Co-authored-by: Charlotte Vermandel <[email protected]>
0 commit comments