Skip to content

Commit

Permalink
easy
Browse files Browse the repository at this point in the history
  • Loading branch information
0-don committed Nov 22, 2024
1 parent 33f4ed0 commit 6559b63
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
1 change: 1 addition & 0 deletions src/app/(auth)/login/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ export default function LoginPage(props: LoginPageProps) {
value={password}
onChange={(e) => setPassword(e.target.value)}
required
autoComplete="current-password"
/>
</div>
<div className="flex justify-between">
Expand Down
1 change: 1 addition & 0 deletions src/app/(auth)/register/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ export default function RegisterPage() {
value={password}
onChange={(e) => setPassword(e.target.value)}
required
autoComplete="current-password"
/>
</div>
<div className="flex justify-between">
Expand Down
5 changes: 0 additions & 5 deletions src/app/api/[[...route]]/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,6 @@ import { authRoute } from "@/server/auth";
import { userRoute } from "@/server/user";
import { Elysia } from "elysia";

/**
* Force dynamic import for RPC clients
*/
export const dynamic = "force-dynamic";

/**
* Main API router
* Combines auth and user routes under the '/api' prefix
Expand Down

0 comments on commit 6559b63

Please sign in to comment.