"use server"; import { prisma } from "@/lib/prisma"; // Deletes a custom commission card by id. export async function deleteCommissionCustomCard(id: string) { await prisma.commissionCustomCard.delete({ where: { id }, }); }