Skip to content

Commit 340fba6

Browse files
committed
MjmlColumn borderBottom prefers null over "" - fixes gmail formatting
1 parent 1135dfe commit 340fba6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/web/emails/Newsletter.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const NewsletterSection = ({
2020
<MjmlColumn
2121
paddingBottom={32}
2222
paddingTop={32}
23-
borderBottom={noBorder ? "" : `1px dotted ${colors.gray500}`}
23+
borderBottom={noBorder ? null : `1px dotted ${colors.gray500}`}
2424
>
2525
{children}
2626
</MjmlColumn>

0 commit comments

Comments
 (0)