diff --git a/app/(auth)/login/page.tsx b/app/(auth)/login/page.tsx index b2cca51..378f503 100644 --- a/app/(auth)/login/page.tsx +++ b/app/(auth)/login/page.tsx @@ -46,10 +46,6 @@ export default function LoginPage() { - {/*

- 📢 To keep our free resources accessible to all, we're allowing only - 200 new account sign-ups each day. -

*/}

{t("By clicking continue, you agree to our")}{" "} diff --git a/app/api/user/admin/update/route.ts b/app/api/user/admin/update/route.ts index c1cf1da..275db1f 100644 --- a/app/api/user/admin/update/route.ts +++ b/app/api/user/admin/update/route.ts @@ -22,6 +22,7 @@ export async function POST(req: Request) { team: data.team, image: data.image, apiKey: data.apiKey, + password: data.password, }); if (!res?.id) { return Response.json("An error occurred", { diff --git a/components/forms/user-auth-form.tsx b/components/forms/user-auth-form.tsx index 0789eda..69fcf59 100644 --- a/components/forms/user-auth-form.tsx +++ b/components/forms/user-auth-form.tsx @@ -155,6 +155,7 @@ export function UserAuthForm({ className, type, ...props }: UserAuthFormProps) { )}