fix: Issue chargin no show fee (#17066)

This commit is contained in:
Anik Dhabal Babu
2024-10-15 15:05:53 +00:00
committed by GitHub
parent 9c3f4ec055
commit c6f84e6c4b
@@ -81,9 +81,13 @@ export const chargeCardHandler = async ({ ctx, input }: ChargeCardHandlerOptions
},
};
const idToSearchObject = booking.eventType?.teamId
? { teamId: booking.eventType.teamId }
: { userId: ctx.user.id };
const paymentCredential = await prisma.credential.findFirst({
where: {
userId: ctx.user.id,
...idToSearchObject,
appId: booking.payment[0].appId,
},
include: {