We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c49bc15 commit 4624ae9Copy full SHA for 4624ae9
packages/ui-components/src/Containers/MetaBar/index.tsx
@@ -49,12 +49,12 @@ const MetaBar: FC<MetaBarProps> = ({
49
<ol>
50
{filteredHeadings.map(head => (
51
<li
52
- key={head.value}
+ key={head.data?.id}
53
className={
54
head.depth === 3 ? 'pl-2' : head.depth === 4 ? 'pl-4' : ''
55
}
56
>
57
- <Component href={`#${head?.data?.id}`}>
+ <Component href={`#${head.data?.id}`}>
58
{' '}
59
{head.value}
60
</Component>
0 commit comments