Skip to content
This repository was archived by the owner on Jan 16, 2022. It is now read-only.

Commit f1334fe

Browse files
authored
Remove capitalisation from greeting label (#595)
1 parent 1876273 commit f1334fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/App/Header/HeaderGreetings.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const HeaderGreetings: React.FC<Props> = ({ username }) => {
1414
return (
1515
<>
1616
<Greetings>{t('header.greetings')}</Greetings>
17-
<Label capitalize={true} data-testid="greetings-label" text={username} weight="bold" />
17+
<Label data-testid="greetings-label" text={username} weight="bold" />
1818
</>
1919
);
2020
};

0 commit comments

Comments
 (0)