Skip to content

Typo in Algolia indexName causes search to return no results #183

@adity1raut

Description

@adity1raut

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions