Skip to content

Commit 482d1ec

Browse files
committed
fix: routes.ts 파일 경로 이동
1 parent c910056 commit 482d1ec

File tree

40 files changed

+39
-39
lines changed

40 files changed

+39
-39
lines changed

src/components/common/header/Header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import { formatImgPath } from '../../../util/formatImgPath';
1717
// import { useEffect } from 'react';
1818
// import { testLiveAlarm } from '../../../api/alarm.api';
1919
import { useMyProfileInfo } from '../../../hooks/user/useMyInfo';
20-
import { ROUTES } from '../../../constants/user/routes';
20+
import { ROUTES } from '../../../constants/routes';
2121

2222
function Header() {
2323
const location = useLocation();

src/components/common/header/Notification/Notification.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import LoadingSpinner from '../../loadingSpinner/LoadingSpinner';
55
import useAlarmList from '../../../../hooks/user/useAlarmList';
66
import arrow_right from '../../../../assets/ArrowRight.svg';
77
import { useNavigate } from 'react-router-dom';
8-
import { ROUTES } from '../../../../constants/user/routes';
8+
import { ROUTES } from '../../../../constants/routes';
99

1010
const Notification = () => {
1111
const navigate = useNavigate();

src/components/user/comment/commentComponent/commentComponent/CommentComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import chat from '../../../../../assets/chat.svg';
44
import { Link } from 'react-router-dom';
55
import CommentInput from '../../commentInput/CommentInput';
66
import type { CommentType } from '../../../../../models/comment';
7-
import { ROUTES } from '../../../../../constants/user/routes';
7+
import { ROUTES } from '../../../../../constants/routes';
88
import Avatar from '../../../../common/avatar/Avatar';
99

1010
interface CommentComponentProps {

src/components/user/comment/replyComponent/ReplyComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import CommentInput from '../commentInput/CommentInput';
88
import useGetReply from '../../../../hooks/user/CommentHooks/useGetReply';
99
import LoadingSpinner from '../../../common/loadingSpinner/LoadingSpinner';
1010
import { Link } from 'react-router-dom';
11-
import { ROUTES } from '../../../../constants/user/routes';
11+
import { ROUTES } from '../../../../constants/routes';
1212
import dropdownButton from '../../../../assets/dropdownButton.svg';
1313

1414
interface ReplyComponentProps {

src/components/user/customerService/MoveInquiredLink.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { useLocation } from 'react-router-dom';
2-
import { ROUTES } from '../../../constants/user/routes';
2+
import { ROUTES } from '../../../constants/routes';
33
import * as S from './MoveInquiredLink.styled';
44

55
export default function MovedInquiredLink() {

src/components/user/customerService/noticeDetail/bottom/button/ListButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ROUTES } from '../../../../../../constants/user/routes';
1+
import { ROUTES } from '../../../../../../constants/routes';
22
import ContentBorder from '../../../../../common/contentBorder/ContentBorder';
33
import * as S from './ListButton.styled';
44

src/components/user/customerService/noticeDetail/bottom/button/OtherNoticeButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ROUTES } from '../../../../../../constants/user/routes';
1+
import { ROUTES } from '../../../../../../constants/routes';
22
import type { OtherNotice } from '../../../../../../models/customerService';
33
import { formatDate } from '../../../../../../util/format';
44
import * as S from './OtherNoticeButton.styled';

src/components/user/home/projectCardLists/ProjectCardLists.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { useProjectCardListData } from '../../../../hooks/user/useProjectCardLis
33
import CardList from './cardList/CardList';
44
import * as S from './ProjectCardLists.styled';
55
import { Link } from 'react-router-dom';
6-
import { ROUTES } from '../../../../constants/user/routes';
6+
import { ROUTES } from '../../../../constants/routes';
77
import EmptyLoading from '../../../common/emptyLoading/EmptyLoading';
88
import NoResult from '../../../common/noResult/NoResult';
99
import { useSaveSearchFiltering } from '../../../../hooks/user/useSaveSearchFiltering';

src/components/user/manageProjects/Card.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import * as S from './Card.styled';
22
import type { ManagedProject } from '../../../models/manageMyProject';
33
import AvatarList from '../../common/avatar/AvatarList';
44
import { formatDate } from '../../../util/formatDate';
5-
import { ROUTES } from '../../../constants/user/routes';
5+
import { ROUTES } from '../../../constants/routes';
66
interface CardProps {
77
project: ManagedProject;
88
}

src/components/user/manageProjects/CardList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import * as S from './CardList.styled';
22
import type { ManagedProject } from '../../../models/manageMyProject';
33
import Card from './Card';
44
import CreateButton from '../../../assets/createProjectButton.svg';
5-
import { ROUTES } from '../../../constants/user/routes';
5+
import { ROUTES } from '../../../constants/routes';
66

77
interface CardListProps {
88
projects: ManagedProject[];

0 commit comments

Comments
 (0)