Skip to content

Commit

Permalink
feat: disable register page
Browse files Browse the repository at this point in the history
  • Loading branch information
secona committed Nov 1, 2024
1 parent 48e7002 commit 2ada3f1
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions app/register/page.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
import { MenteeRegistrationModule } from "@/modules/MenteeRegistrationModule"
// import { MenteeRegistrationModule } from "@/modules/MenteeRegistrationModule"
import { redirect } from "next/navigation"

const Page = () => {
return (
<main>
<MenteeRegistrationModule />
</main>
)
return redirect('/')
// return (
// <main>
// <MenteeRegistrationModule />
// </main>
// )
}

export default Page

0 comments on commit 2ada3f1

Please sign in to comment.