Files
landing_page/refer_landing_page/app/console/login/page.tsx
T
Godopu 575fbdb6de fix(console,api): direct render AdminLoginForm on unauthenticated and harden URL normalization
- 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
2026-08-25 15:08:40 +09:00

9 lines
181 B
TypeScript

"use client";
import React from "react";
import { AdminLoginForm } from "../_components/AdminLoginForm";
export default function AdminLoginPage() {
return <AdminLoginForm />;
}