From 82121508f3bb9e5ee3c6ad348cccd5066e399453 Mon Sep 17 00:00:00 2001 From: Josue Date: Tue, 20 Apr 2021 18:32:25 -0400 Subject: [PATCH] refactor: adjust the size of all headers to a h4 type --- striker-ui/components/Text/HeaderText.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/striker-ui/components/Text/HeaderText.tsx b/striker-ui/components/Text/HeaderText.tsx index 1bd4c163..a2c38923 100644 --- a/striker-ui/components/Text/HeaderText.tsx +++ b/striker-ui/components/Text/HeaderText.tsx @@ -9,7 +9,7 @@ const WhiteTypography = withStyles({ })(Typography); const HeaderText = ({ text }: { text: string }): JSX.Element => { - return {text}; + return {text}; }; export default HeaderText;