Skip to content

Commit 11f122d

Browse files
committed
fix: make blockquote title capitalised
1 parent 672f464 commit 11f122d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/shared/blockquote/blockquote.view.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const getKicker = ({ mod, title }) => {
3131
<div className={cx('wrapper')}>
3232
{Icon && <Icon className={cx('icon')} />}
3333
<Tag
34-
className={cx('kicker', !title && kickerContent && 'uppercased')}
34+
className={cx('kicker', 'uppercased')}
3535
id={title ? slugify(title) : undefined}
3636
>
3737
{title || kickerContent}

0 commit comments

Comments
 (0)