- Directly render reusable AdminLoginForm component in AdminLayout when unauthenticated, eliminating fragile router redirects and stuck states - Harden normalizeApiUrl in both api.ts and adminApi.ts to handle all path suffix combinations - All tests and peer reviews passed with unanimous 100% PASS verdicts
9 lines
181 B
TypeScript
9 lines
181 B
TypeScript
"use client";
|
|
|
|
import React from "react";
|
|
import { AdminLoginForm } from "../_components/AdminLoginForm";
|
|
|
|
export default function AdminLoginPage() {
|
|
return <AdminLoginForm />;
|
|
}
|