diff --git a/src/lib/actions/categoryDelete.ts b/src/lib/actions/categoryDelete.ts index 24832ff..ba0e9d6 100644 --- a/src/lib/actions/categoryDelete.ts +++ b/src/lib/actions/categoryDelete.ts @@ -38,15 +38,25 @@ export default async function categoryDelete(id: number): Promise { + + // update related payments + await tx.payment.updateMany({ + where: {categoryId: category.id}, + data: {categoryId: null}, + }); + + // delete the category + await tx.category.delete({ where: { id: category.id, userId: user.sub, }, - }, - ); + }); + }); + } catch (e) { return { type: 'error',