fix(show): delete show

This commit is contained in:
2026-02-05 18:19:45 +08:00
parent 04611e98e3
commit 0280929c64
8 changed files with 38 additions and 76 deletions

View File

@@ -6,7 +6,7 @@ import { useEffect } from "react"
export default function Home() {
const router = useRouter()
useEffect(() => {
router.push("/show")
router.push("/management")
}, [router])
return <></>
}