Skip to content

Commit aadbe58

Browse files
committed
[#56] ♻️ rename page name + change how page component is declared with a light type correction
1 parent a2e5a1b commit aadbe58

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/app/(pages)/sign-in/page.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import { SubmitHandler, useForm } from 'react-hook-form'
55

66
import { SignInRequest } from '@/types/auth.types'
77

8-
import { signIn } from '@/services/api/auth'
8+
import { signIn } from '@/services/auth/auth'
99

10-
const Page: React.FC = () => {
10+
export default function LoginPage(): JSX.Element {
1111
const {
1212
register,
1313
handleSubmit,
@@ -52,5 +52,3 @@ const Page: React.FC = () => {
5252
</div>
5353
)
5454
}
55-
56-
export default Page

0 commit comments

Comments
 (0)