We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2e5a1b commit aadbe58Copy full SHA for aadbe58
src/app/(pages)/sign-in/page.tsx
@@ -5,9 +5,9 @@ import { SubmitHandler, useForm } from 'react-hook-form'
5
6
import { SignInRequest } from '@/types/auth.types'
7
8
-import { signIn } from '@/services/api/auth'
+import { signIn } from '@/services/auth/auth'
9
10
-const Page: React.FC = () => {
+export default function LoginPage(): JSX.Element {
11
const {
12
register,
13
handleSubmit,
@@ -52,5 +52,3 @@ const Page: React.FC = () => {
52
</div>
53
)
54
}
55
-
56
-export default Page
0 commit comments