revert margin on last paragraph item

This commit is contained in:
Paul Wackerow 2022-11-27 13:23:06 -05:00
parent f95192beb0
commit 440493b05e
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} _last={{ mb: 0 }} size='sm' lineHeight={1.5}>
<Text mb={7} size='sm' lineHeight={1.5}>
{children}
</Text>
);