chore: update pr based on review

This commit is contained in:
Ephraim Atta-Duncan
2024-02-14 14:52:18 +00:00
parent cab875f68a
commit c680cfc24f
5 changed files with 4 additions and 24 deletions

View File

@ -4,7 +4,7 @@ export type DeleteUserOptions = {
email: string;
};
export const deleteUser = async ({ email }: DeleteUserOptions) => {
export const deletedServiceAccount = async ({ email }: DeleteUserOptions) => {
const user = await prisma.user.findFirst({
where: {
email: {