Skip to content

Commit 5640223

Browse files
committed
chore: prettier
1 parent 2f6fe5d commit 5640223

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

packages/api-mailer/src/transports/createSmtpTransport.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,12 @@
22
* Nodemailer docs
33
* https://nodemailer.com/about/
44
*/
5-
import type {Transport} from "~/types.js";
5+
import type { Transport } from "~/types.js";
66
import WebinyError from "@webiny/error";
7-
import type {Transporter} from "nodemailer";
7+
import type { Transporter } from "nodemailer";
88
import nodemailer from "nodemailer";
99
import type SMTPTransport from "nodemailer/lib/smtp-transport";
1010

11-
1211
export type SmtpTransportConfig = SMTPTransport.Options;
1312

1413
export interface SmtpTransport extends Transport {
@@ -76,7 +75,7 @@ export const createSmtpTransport = (
7675
error: null
7776
};
7877
}
79-
78+
8079
return {
8180
result: null,
8281
error: {

0 commit comments

Comments
 (0)