Skip to content

Commit 0168906

Browse files
committed
chore: Lint
1 parent d59dca2 commit 0168906

File tree

3 files changed

+4
-12
lines changed

3 files changed

+4
-12
lines changed

packages/create-email/package.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,7 @@
1616
"url": "https://github.com/resend/react-email.git",
1717
"directory": "packages/create-email"
1818
},
19-
"keywords": [
20-
"react",
21-
"email"
22-
],
19+
"keywords": ["react", "email"],
2320
"engines": {
2421
"node": ">=18.0.0"
2522
},

packages/react-email/package.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,7 @@
2020
"url": "https://github.com/resend/react-email.git",
2121
"directory": "packages/react-email"
2222
},
23-
"keywords": [
24-
"react",
25-
"email"
26-
],
23+
"keywords": ["react", "email"],
2724
"engines": {
2825
"node": ">=18.0.0"
2926
},

packages/react-email/src/components/toolbar/spam-assassin.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -103,12 +103,10 @@ export const SpamAssassin = ({ result }: SpamAssassinProps) => {
103103
? 'Congratulations! Younr email is clean of abuse indicators.'
104104
: 'Higher scores are better'}
105105
</Results.Column>
106-
<Results.Column
107-
className="text-right tracking-tighter font-bold"
108-
>
106+
<Results.Column className="text-right tracking-tighter font-bold">
109107
<span
110108
className={cn(
111-
"text-3xl",
109+
'text-3xl',
112110
result.points === 0 ? 'text-green-400' : null,
113111
result.points > 0 && result.points <= 1.5 ? null : null,
114112
result.points > 1.5 ? 'text-yellow-200' : null,

0 commit comments

Comments
 (0)