Skip to content

Commit

Permalink
test: change heading id
Browse files Browse the repository at this point in the history
  • Loading branch information
julia-rabello committed Jan 16, 2025
1 parent 3cc113a commit 2913ff0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/markdown-renderer/components.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ const ObservableHeading = ({
}}
>
{level === 2 ? (
<h2 id={slug} className={styles.heading} {...headingProps} />
<h2 id='test' className={styles.heading} {...headingProps} />
) : (
<h3 id={slug} className={styles.heading} {...headingProps} />
<h3 id='test' className={styles.heading} {...headingProps} />
)}
</InView>
)
Expand Down

0 comments on commit 2913ff0

Please sign in to comment.