Skip to content

Commit

Permalink
test: fix seeder
Browse files Browse the repository at this point in the history
  • Loading branch information
Geczy committed Sep 2, 2023
1 parent fd1b7ba commit 63958e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/prisma/src/seed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ main()
})

async function seedUser(providerAccountId?: string) {
const username = faker.internet.userName().replace(".", "_")
const username = faker.internet.userName().replace(".", "_").replace("-", "_")
const user = await prisma.user.create({
data: {
stream_online: faker.datatype.boolean({ probability: 0.75 }),
Expand Down

0 comments on commit 63958e7

Please sign in to comment.