Skip to content

Commit 43b21d3

Browse files
committed
fix async lint
1 parent f2ff225 commit 43b21d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/auth/src/auth.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,9 +199,9 @@ export const auth = betterAuth({
199199
},
200200
}),
201201
magicLink({
202-
sendMagicLink: async ({ email, url }) => {
202+
sendMagicLink: ({ email, url }) => {
203203
const resend = new Resend(process.env.RESEND_API_KEY as string);
204-
await resend.emails.send({
204+
resend.emails.send({
205205
206206
to: email,
207207
subject: "Login to Databuddy",

0 commit comments

Comments
 (0)