Fixed build.

This commit is contained in:
Mike Cao 2024-02-06 08:13:19 -08:00
parent 2975b560fd
commit f02bc13ac3

View File

@ -1,6 +1,7 @@
import { Metadata } from 'next';
import LoginPage from './LoginPage';
export default async function LoginPage() {
export default async function () {
return <LoginPage />;
}