Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 65d9414

Browse files
committed
fix(examples): use new infra credentials
1 parent 891fd88 commit 65d9414

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

examples/demo/src/App.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ function App() {
1010
<h1>DocSearch v3 - React</h1>
1111
<DocSearch
1212
indexName="docsearch"
13-
apiKey="25626fae796133dc1e734c6bcaaeac3c"
13+
appId="R2IYF7ETH7"
14+
apiKey="599cec31baffa4868cae4e79f180729b"
1415
/>
1516
</div>
1617
);

examples/js-demo/app.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@ import '@docsearch/css';
66
docsearch({
77
container: '#docsearch',
88
indexName: 'docsearch',
9-
apiKey: '25626fae796133dc1e734c6bcaaeac3c',
9+
appId: 'R2IYF7ETH7',
10+
apiKey: '599cec31baffa4868cae4e79f180729b',
1011
});

packages/website/docs/DocSearch-v3.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -157,8 +157,8 @@ If you're eager to test DocSearch v3 and can't wait to receive your credentails,
157157

158158
```js
159159
docsearch({
160-
appId: 'BH4D9OD16A',
161-
apiKey: '25626fae796133dc1e734c6bcaaeac3c',
160+
appId: 'R2IYF7ETH7',
161+
apiKey: '599cec31baffa4868cae4e79f180729b',
162162
indexName: 'docsearch',
163163
});
164164
```
@@ -171,8 +171,8 @@ docsearch({
171171

172172
```jsx
173173
<DocSearch
174-
appId="BH4D9OD16A"
175-
apiKey="25626fae796133dc1e734c6bcaaeac3c"
174+
appId="R2IYF7ETH7"
175+
apiKey="599cec31baffa4868cae4e79f180729b"
176176
indexName="docsearch"
177177
/>
178178
```

packages/website/versioned_docs/version-legacy/dropdown.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ If you're eager to test DocSearch but don't have any credentials of your own yet
4444

4545
```javascript
4646
docsearch({
47-
appId: 'BH4D9OD16A',
48-
apiKey: '25626fae796133dc1e734c6bcaaeac3c',
47+
appId: 'R2IYF7ETH7',
48+
apiKey: '599cec31baffa4868cae4e79f180729b',
4949
indexName: 'docsearch',
5050
});
5151
```

0 commit comments

Comments
 (0)