Skip to content

Commit f633f0d

Browse files
authored
fix issue of search not working in dev docs (#8065)
Fix for #8047
1 parent 9303e39 commit f633f0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/twenty-website/src/app/_components/docs/AlgoliaDocSearch.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ interface AlgoliaDocSearchProps {
88
export const AlgoliaDocSearch = ({ pathname }: AlgoliaDocSearchProps) => {
99
const indexName = pathname.includes('user-guide')
1010
? 'user-guide'
11-
: 'developer';
11+
: 'developer-docs';
1212
return (
1313
<DocSearch
1414
hitComponent={({ hit }: { hit: any }) => (

0 commit comments

Comments
 (0)