remove unnecessary font size declaration

This commit is contained in:
Paul Wackerow 2022-11-28 10:30:29 -08:00
parent f66ca930f5
commit 8c4e35aed2
No known key found for this signature in database
GPG Key ID: BB63E296FE9CAB8D
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ const MDXComponents = {
// paragraphs
p: ({ children }: any) => {
return (
<Text mb={7} size='sm' lineHeight={1.5}>
<Text mb={7} lineHeight={1.5}>
{children}
</Text>
);