Skip to content

Commit

Permalink
Upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Sendouc committed Nov 10, 2024
1 parent 47d0f3f commit d28da90
Show file tree
Hide file tree
Showing 3 changed files with 943 additions and 902 deletions.
6 changes: 3 additions & 3 deletions app/db/seed/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -465,9 +465,9 @@ function fakeUser(usedNames: Set<string>) {
}

function uniqueDiscordName(usedNames: Set<string>) {
let result = faker.internet.userName();
let result = faker.internet.username();
while (usedNames.has(result)) {
result = faker.internet.userName();
result = faker.internet.username();
}
usedNames.add(result);

Expand Down Expand Up @@ -1613,7 +1613,7 @@ function otherTeams() {
name: teamName,
customUrl: teamCustomUrl,
inviteCode: nanoid(INVITE_CODE_LENGTH),
twitter: faker.internet.userName(),
twitter: faker.internet.username(),
bio: faker.lorem.paragraph(),
});

Expand Down
Loading

0 comments on commit d28da90

Please sign in to comment.