File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 11'use client'
22
3- import { signIn } from '@/lib/api/auth'
4- import { SignInRequest } from '@/types/login.types'
53import React from 'react'
64import { SubmitHandler , useForm } from 'react-hook-form'
75
6+ import { SignInRequest } from '@/types/auth.types'
7+
8+ import { signIn } from '@/services/api/auth'
9+
810const Page : React . FC = ( ) => {
911 const {
1012 register,
Original file line number Diff line number Diff line change 22
33import { useRouter } from 'next/navigation'
44
5- import { useAuthStore } from '@/lib/store/auth'
65import axios from 'axios'
76
7+ import { useAuthStore } from '@/services/store/auth'
8+
89export default function Home ( ) : JSX . Element {
910 const { logout } = useAuthStore ( )
1011 const router = useRouter ( )
You can’t perform that action at this time.
0 commit comments