Fix NotificationLog TS error with casting

This commit is contained in:
AyrisAI
2026-05-14 22:44:59 +03:00
parent 8aa8410d48
commit effd88adfe

View File

@@ -91,7 +91,7 @@ export async function POST(request: Request) {
} }
// 5. Bildirim Logu // 5. Bildirim Logu
await prisma.notificationLog.create({ await (prisma as any).notificationLog.create({
data: { data: {
mailbox: to, mailbox: to,
sender: mailData.from, sender: mailData.from,