mirror of
https://github.com/documenso/documenso.git
synced 2025-11-23 21:21:37 +10:00
wip: what if user ids were strings instead of numbers
This commit is contained in:
@ -45,7 +45,7 @@ export const seedUser = async ({
|
||||
});
|
||||
};
|
||||
|
||||
export const unseedUser = async (userId: number) => {
|
||||
export const unseedUser = async (userId: string) => {
|
||||
await prisma.user.delete({
|
||||
where: {
|
||||
id: userId,
|
||||
|
||||
Reference in New Issue
Block a user