Skip to content

Commit

Permalink
Replace h4 tags on Transform Property page
Browse files Browse the repository at this point in the history
Replace h4 tags with h3 tags on page
to avoid skipping heading levels.
  • Loading branch information
CodeWritingCow committed May 3, 2024
1 parent f9cce60 commit c7f175d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ContentCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const ContentCard: FC<ContentCardProps> = ({
</div>
<div className="flex items-center p-6">
<div>
<h4 className="font-bold mb-2 heading-lg">{title}</h4>
<h3 className="font-bold mb-2 heading-lg">{title}</h3>
<p>{body}</p>

{details && details.length > 0 && (
Expand Down

0 comments on commit c7f175d

Please sign in to comment.