Skip to content

Commit 2885cb9

Browse files
authored
docs: fix docs navigation (#2279)
1 parent 3fc1dc5 commit 2885cb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/docs/src/app/_components/layout/MainNavigation/MainNavigation.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ const MainNavigation: FC<Props> = (props) => {
139139
value={searchValue}
140140
onChange={(value) => setSearchValue(value.toLowerCase().trim())}
141141
/>
142-
<Navigation aria-labelledby={headingId}>
142+
<Navigation aria-labelledby={headingId} key={mainPathSegment}>
143143
{Object.entries(selectedMainBranch)
144144
.filter((tree) => filterBySearchValue(searchValue, tree))
145145
.map(([group, treeItem]) =>

0 commit comments

Comments
 (0)