Skip to content

Commit

Permalink
[web] Change login component name
Browse files Browse the repository at this point in the history
  • Loading branch information
dnjooiopa committed Apr 21, 2024
1 parent 14e4c33 commit 7407d3c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions web/src/app/(unauth)/login/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { FC } from 'react'
import { cookies } from 'next/headers'
import { redirect } from 'next/navigation'

import Login from './Login'
import LoginForm from './LoginForm'

const Page: FC<{}> = () => {
const { get } = cookies()
Expand All @@ -14,7 +14,7 @@ const Page: FC<{}> = () => {

return (
<div className="flex flex-col items-center">
<Login />
<LoginForm />
</div>
)
}
Expand Down

0 comments on commit 7407d3c

Please sign in to comment.