Skip to content

Commit

Permalink
fix(Heading): remove non-existent dom prop
Browse files Browse the repository at this point in the history
  • Loading branch information
maxpatiiuk committed Sep 24, 2024
1 parent 5696e22 commit a73a79d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const Heading: FunctionalComponent<HeadingProps> = (props, children): VNo
delete props.level;

return (
<HeadingTag class={props.class} key={props.key} level={props.level}>
<HeadingTag class={props.class} key={props.key}>
{children}
</HeadingTag>
);
Expand Down

0 comments on commit a73a79d

Please sign in to comment.