Skip to content

Commit d9868c0

Browse files
committed
[#56] ♻️ rewrite module import paths along to the names changed
1 parent 16210dc commit d9868c0

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
'use client'
22

3-
import { signIn } from '@/lib/api/auth'
4-
import { SignInRequest } from '@/types/login.types'
53
import React from 'react'
64
import { SubmitHandler, useForm } from 'react-hook-form'
75

6+
import { SignInRequest } from '@/types/auth.types'
7+
8+
import { signIn } from '@/services/api/auth'
9+
810
const Page: React.FC = () => {
911
const {
1012
register,

src/app/page.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22

33
import { useRouter } from 'next/navigation'
44

5-
import { useAuthStore } from '@/lib/store/auth'
65
import axios from 'axios'
76

7+
import { useAuthStore } from '@/services/store/auth'
8+
89
export default function Home(): JSX.Element {
910
const { logout } = useAuthStore()
1011
const router = useRouter()

0 commit comments

Comments
 (0)