Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/ui-components/src/Containers/MetaBar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ const MetaBar: FC<MetaBarProps> = ({
<ol>
{filteredHeadings.map(head => (
<li
key={head.value}
key={head.data?.id}
className={
head.depth === 3 ? 'pl-2' : head.depth === 4 ? 'pl-4' : ''
}
>
<Component href={`#${head?.data?.id}`}>
<Component href={`#${head.data?.id}`}>
{' '}
{head.value}
</Component>
Expand Down
Loading