update DocSearch do use env vars

This commit is contained in:
Paul Wackerow 2022-12-13 12:29:00 -08:00
parent 0836329a08
commit 7bca3d3431
No known key found for this signature in database
GPG Key ID: BB63E296FE9CAB8D
1 changed files with 1 additions and 1 deletions

View File

@ -9,6 +9,6 @@ export const Search: React.FC = () => {
// TODO: Replace Algolia test keys with above env vars when ready
return (
<DocSearch appId='R2IYF7ETH7' apiKey='599cec31baffa4868cae4e79f180729b' indexName='docsearch' />
<DocSearch appId={appId} apiKey={apiKey} indexName={indexName} />
);
};