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:
parent
4ab0c08bb4
commit
116408e64d
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ interface Props {
|
||||||
|
|
||||||
const SettingSectionHeader: React.FC<Props> = ({title}) => {
|
const SettingSectionHeader: React.FC<Props> = ({title}) => {
|
||||||
return (
|
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>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue