Skip to content

Commit

Permalink
fix: simple card title changed from h4 to h3
Browse files Browse the repository at this point in the history
  • Loading branch information
Wagner3UB committed Feb 2, 2024
1 parent c654e61 commit 3e1c84e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const Block = ({
<div className={cx('simple-text-card', { 'cms-ui': inEditMode })}>
{inEditMode ? (
<>
<CardTitle tag="h4">
<CardTitle tag="h3">
<div
onClick={() => {
setSelectedField('title');
Expand Down Expand Up @@ -122,7 +122,7 @@ const Block = ({
</>
) : (
<>
<CardTitle tag="h4" id={block.id + '-title'}>
<CardTitle tag="h3" id={block.id + '-title'}>
{title}
</CardTitle>
<hr />
Expand Down

0 comments on commit 3e1c84e

Please sign in to comment.