Skip to content

Commit

Permalink
Switching username generator library to be less explicit (#1351)
Browse files Browse the repository at this point in the history
  • Loading branch information
fozziethebeat committed Feb 8, 2023
1 parent d35220c commit 07b58d4
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
22 changes: 11 additions & 11 deletions website/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion website/package.json
Expand Up @@ -50,6 +50,7 @@
"eslint-plugin-simple-import-sort": "^8.0.0",
"focus-visible": "^5.2.0",
"framer-motion": "^6.5.1",
"friendly-username-generator": "^2.0.4",
"lande": "^1.0.10",
"lucide-react": "^0.105.0",
"next": "13.0.6",
Expand All @@ -68,7 +69,6 @@
"storybook-addon-next-router": "^4.0.2",
"swr": "^2.0.0",
"tailwindcss": "^3.2.4",
"unique-username-generator": "^1.1.3",
"use-debounce": "^9.0.2"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion website/src/pages/api/auth/[...nextauth].ts
Expand Up @@ -11,7 +11,7 @@ import { checkCaptcha } from "src/lib/captcha";
import { createApiClientFromUser } from "src/lib/oasst_client_factory";
import prisma from "src/lib/prismadb";
import { BackendUserCore } from "src/types/Users";
import { generateUsername } from "unique-username-generator";
import { generateUsername } from "friendly-username-generator";

const providers: Provider[] = [];

Expand Down

0 comments on commit 07b58d4

Please sign in to comment.