Skip to content

Commit bdb35c4

Browse files
bukinoshitagabrielmfern
authored andcommitted
fix(all): Self-closing elements (#1825)
1 parent c351340 commit bdb35c4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/demo/emails/receipts/apple-receipt.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ export const AppleReceiptEmail = () => (
155155
<Column style={tableCell} align="right">
156156
<Text style={productPriceTotal}>TOTAL</Text>
157157
</Column>
158-
<Column style={productPriceVerticalLine}></Column>
158+
<Column style={productPriceVerticalLine} />
159159
<Column style={productPriceLargeWrapper}>
160160
<Text style={productPriceLarge}>$14.99</Text>
161161
</Column>

packages/tailwind/src/tailwind.spec.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ describe("Responsive styles", () => {
390390
<Tailwind>
391391
<Head />
392392
<Body className="bg-white my-auto mx-auto font-sans md:px-[64px]">
393-
<div className="md:px-[64px]"></div>
393+
<div className="md:px-[64px]" />
394394
</Body>
395395
</Tailwind>,
396396
);

0 commit comments

Comments
 (0)