Skip to content

Commit 3b3395c

Browse files
authored
Merge pull request #2517 from trycompai/main
[comp] Production Deploy
2 parents f257890 + 3376196 commit 3b3395c

16 files changed

+195
-13
lines changed

bun.lock

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/email/emails/all-policy-notification.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ export const AllPolicyNotificationEmail = ({
3434
return (
3535
<Html>
3636
<Tailwind>
37-
<Preview>{subjectText}</Preview>
37+
<head />
38+
<Preview>{subjectText}</Preview>
3839

3940
<Body className="mx-auto my-auto bg-[#fff] font-sans">
4041
<Container

packages/email/emails/invite-portal.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ export const InvitePortalEmail = ({ email, inviteLink, organizationName }: Props
2323
return (
2424
<Html>
2525
<Tailwind>
26-
<Preview>You've been invited to the Comp AI Portal</Preview>
26+
<head />
27+
<Preview>You've been invited to the Comp AI Portal</Preview>
2728

2829
<Body className="mx-auto my-auto bg-[#fff] font-sans">
2930
<Container

packages/email/emails/invite.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ export const InviteEmail = ({ email, organizationName, inviteLink }: Props) => {
2323
return (
2424
<Html>
2525
<Tailwind>
26-
<Preview>You've been invited to join Comp AI</Preview>
26+
<head />
27+
<Preview>You've been invited to join Comp AI</Preview>
2728

2829
<Body className="mx-auto my-auto bg-[#fff] font-sans">
2930
<Container

packages/email/emails/magic-link.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ export const MagicLinkEmail = ({ email, url, inviteCode }: Props) => {
2323
return (
2424
<Html>
2525
<Tailwind>
26-
<Preview>Login Link for Comp AI</Preview>
26+
<head />
27+
<Preview>Login Link for Comp AI</Preview>
2728

2829
<Body className="mx-auto my-auto bg-[#fff] font-sans">
2930
<Container

packages/email/emails/marketing/welcome.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ export const WelcomeEmail = ({ name }: Props) => {
1010
return (
1111
<Html>
1212
<Tailwind>
13-
<Preview>Get started with Comp AI</Preview>
13+
<head />
14+
<Preview>Get started with Comp AI</Preview>
1415

1516
<Body className="mx-auto my-auto bg-[#fff] font-sans">
1617
<Container

packages/email/emails/otp.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ export const OTPVerificationEmail = ({ email, otp }: Props) => {
2020
return (
2121
<Html>
2222
<Tailwind>
23-
<Preview>One-Time Password for Comp AI</Preview>
23+
<head />
24+
<Preview>One-Time Password for Comp AI</Preview>
2425

2526
<Body className="mx-auto my-auto bg-[#fff] font-sans">
2627
<Container

packages/email/emails/policy-notification.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ export const PolicyNotificationEmail = ({
5050
return (
5151
<Html>
5252
<Tailwind>
53-
<Preview>{subjectText}</Preview>
53+
<head />
54+
<Preview>{subjectText}</Preview>
5455

5556
<Body className="mx-auto my-auto bg-[#fff] font-sans">
5657
<Container

packages/email/emails/reminders/task-reminder.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ export const TaskReminderEmail = ({ email, name, dueDate, recordId }: Props) =>
2828
return (
2929
<Html>
3030
<Tailwind>
31-
<Preview>Comp AI - Task Reminder</Preview>
31+
<head />
32+
<Preview>Comp AI - Task Reminder</Preview>
3233

3334
<Body className="mx-auto my-auto bg-[#fff] font-sans">
3435
<Container

packages/email/emails/reminders/task-status-notification.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ export const TaskStatusNotificationEmail = ({
4141
return (
4242
<Html>
4343
<Tailwind>
44-
<Preview>
44+
<head />
45+
<Preview>
4546
Task &quot;{taskName}&quot; {statusLabel} - {organizationName}
4647
</Preview>
4748

0 commit comments

Comments
 (0)