build fix

This commit is contained in:
alma 2025-05-05 17:19:05 +02:00
parent 601b7848cf
commit fdddb44c4d

View File

@ -75,7 +75,7 @@ export async function GET(request: Request, props: { params: Promise<{ id: strin
secure: true,
auth: {
user: credentials.email,
pass: credentials.password,
pass: credentials.password || undefined,
},
logger: false,
});
@ -219,7 +219,7 @@ export async function POST(request: Request, props: { params: Promise<{ id: stri
secure: true,
auth: {
user: credentials.email,
pass: credentials.password,
pass: credentials.password || undefined,
},
logger: false,
});