We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents adad7dc + 3e2371d commit b4f0235Copy full SHA for b4f0235
1 file changed
src/components/RichText/Heading.tsx
@@ -20,8 +20,8 @@ export function Heading({ node, children }: Props) {
20
});
21
22
if (node.type === HeadingNode.Type.HEADING_ONE) {
23
- return <h2 className={className}>{children}</h2>;
+ return <h3 className={className}>{children}</h3>;
24
}
25
26
- return <h3 className={className}>{children}</h3>;
+ return <h4 className={className}>{children}</h4>;
27
0 commit comments