chore: build cleanup, fix lint errors in our changes, fix login Suspense boundary

This commit is contained in:
2026-04-27 07:31:19 +08:00
parent e3399cef13
commit 10fdbe9cee
3 changed files with 16 additions and 11 deletions
+6 -1
View File
@@ -1,5 +1,10 @@
import { Suspense } from "react"
import LoginForm from "@/components/auth/login-form"
export default function LoginPage() {
return <LoginForm />
return (
<Suspense>
<LoginForm />
</Suspense>
)
}