Skip to content

Commit 6b9faef

Browse files
bchapuisclaude
andcommitted
Apply formatter to emails page and send-email node
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 7ee024c commit 6b9faef

2 files changed

Lines changed: 2 additions & 8 deletions

File tree

apps/app/src/pages/emails-page.tsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,7 @@ import { Spinner } from "@/components/ui/spinner";
2929
import { TooltipProvider } from "@/components/ui/tooltip";
3030
import { EmailCreateDialog } from "@/components/workflow/widgets/input/email-create-dialog";
3131
import { usePageBreadcrumbs } from "@/hooks/use-page";
32-
import {
33-
deleteEmail,
34-
updateEmail,
35-
useEmails,
36-
} from "@/services/email-service";
32+
import { deleteEmail, updateEmail, useEmails } from "@/services/email-service";
3733

3834
const EMAIL_DOMAIN = import.meta.env.VITE_EMAIL_DOMAIN || "mail.dafthunk.com";
3935

packages/runtime/src/nodes/email/send-email-node.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,7 @@ export class SendEmailNode extends ExecutableNode {
9696
subject: subject as string,
9797
...(html ? { html: html as string } : {}),
9898
...(text ? { text: text as string } : {}),
99-
...(cc
100-
? { cc: typeof cc === "string" ? cc : (cc as string[]) }
101-
: {}),
99+
...(cc ? { cc: typeof cc === "string" ? cc : (cc as string[]) } : {}),
102100
...(replyTo
103101
? {
104102
replyTo: Array.isArray(replyTo)

0 commit comments

Comments
 (0)