Gabriel Barros Feitosa Sá

Results 1 issues of Gabriel Barros Feitosa Sá

Wasn't the save supposed to update in prisma.user? ``` async save(user: User): Promise { const data = await UserMapper.toPersistence(user) await prisma.message.update({ where: { id: user.id, }, data, }) } ```