0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-03-11 02:12:21 -05:00

Fixed linting error

This commit is contained in:
Peter Zimon 2023-05-17 07:53:18 +02:00
parent 4ab0c08bb4
commit 116408e64d

View file

@ -6,7 +6,7 @@ interface Props {
const SettingSectionHeader: React.FC<Props> = ({title}) => {
return (
<h2 className="text-grey-700 mb-4 text-xs font-semibold uppercase tracking-normal">{title}</h2>
<h2 className="mb-4 text-xs font-semibold uppercase tracking-normal text-grey-700">{title}</h2>
);
};