Release (Stable version)

This commit is contained in:
2026-04-12 19:24:24 +01:00
parent 9993bd232f
commit 185c680b37
18 changed files with 1771 additions and 485 deletions

View File

@@ -140,7 +140,7 @@ export async function POST(req: Request) {
try {
// Delete user (CASCADE will delete all related contracts)
await prisma.user.delete({
await prisma.user.deleteMany({
where: { clerkId: id },
});