Tailwind + daisy UI update #1

Merged
nocnico merged 9 commits from tailwind-+-daisyUI-update into main 2025-02-23 15:26:54 +00:00
Showing only changes of commit e42bc192a9 - Show all commits

View File

@@ -37,6 +37,14 @@ export const upsertAppointment = async (
export const deleteAppoinement = async (id: Event['id']) => {
await prisma.eventAppointment.delete({ where: { id: id } });
prisma.eventAppointment.findMany({
where: {
eventId: id,
},
orderBy: {
// TODO: add order by in relation to table selected column
},
});
};
export const upsertParticipant = async (