-
Notifications
You must be signed in to change notification settings - Fork 61
Typo in Algolia indexName causes search to return no results #183
Copy link
Copy link
Open
Description
File: docusaurus.config.js — Line 100
Description
The Algolia search index name is set to "metataflow" which is a typo.
The correct name should be "metaflow". Because the index name does not match
what is registered in Algolia, every search query on the docs site returns zero
results. The search bar appears completely broken to all users visiting the
documentation.
Current Code
algolia: {
appId: "5IZ8L9TJQL",
apiKey: "246d8e1f6a4c455ba30172edcd0399d5",
indexName: "metataflow", // typo — extra "ta"
},Fixed Code
algolia: {
appId: "5IZ8L9TJQL",
apiKey: "246d8e1f6a4c455ba30172edcd0399d5",
indexName: "metaflow", // correct name
},What Changes
| Behavior | |
|---|---|
| Before | Searching anything on the docs site returns no results — search is broken for all users |
| After | Search works correctly and returns relevant documentation pages as expected |
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels