Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
0-don committed Jul 4, 2024
1 parent 2aeeb69 commit 23b1182
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/app/(auth)/login/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"use client";

import { AuthHook } from "@/components/hooks/auth-hook";
import { authUser } from "@/server/auth/typebox";
import Link from "next/link";
import { useRouter } from "next/navigation";
import { FormEvent, useState } from "react";
Expand Down Expand Up @@ -33,8 +34,10 @@ export default function LoginPage(props: LoginPageProps) {
id="username"
type="text"
value={username}
minLength={authUser.properties.username.minLength}
onChange={(e) => setUsername(e.target.value)}
required

/>
</div>
<div className="flex flex-col border">
Expand Down

0 comments on commit 23b1182

Please sign in to comment.