Skip to content

Commit efd0a0b

Browse files
committed
πŸ‹ chore: (FE) - DTO -> dto / fix resttype import error
1 parent 19ff84e commit efd0a0b

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

β€Žfrontend/src/components/@drawer/RecordDrawer/RecordDrawer.tsxβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import DocsItem from '@components/@shared/DocsItem/DocsItem';
22
import { REST_TYPE } from '@constants/rest.constant';
3-
import { DocsItemDtoType } from '@customType/DTO';
3+
import { DocsItemDtoType } from '@customType/dto';
44
import axios from 'axios';
55
import React, { useEffect, useState } from 'react';
66

β€Žfrontend/src/components/@shared/DocsItem/DocsItem.tsxβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from 'react';
22

3-
import { DocsItemDtoType } from '@customType/DTO';
3+
import { DocsItemDtoType } from '@customType/dto';
44
import { ReactComponent as DownloadIcon } from '@assets/icon/download.svg';
55
import { iconSmStyle } from '@styles/commonStyle';
66
import { createdAtStyle, docsItemWrapper, indexStyle, playTimeStyle } from './DocsItem.style';

β€Žfrontend/src/pages/Feedback/Feedback.tsxβ€Ž

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ import theme from '@styles/theme';
1919
import { iconBgStyle } from '@styles/commonStyle';
2020
import { socketEmit } from '@api/socket.api';
2121
import { SOCKET_EVENT_TYPE } from '@constants/socket.constant';
22-
import { FeedbackDtoType } from '@customType/DTO';
22+
import { FeedbackDtoType } from '@customType/dto';
23+
import { REST_TYPE } from '@constants/rest.constant';
2324

2425
const Feedback = () => {
2526
usePreventLeave();

β€Žfrontend/src/pages/Interviewee/Interviewee.tsxβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import { PAGE_TYPE } from '@constants/page.constant';
1616
import { SOCKET_EVENT_TYPE } from '@constants/socket.constant';
1717
import { socketEmit } from '@api/socket.api';
1818
import { REST_TYPE } from '@constants/rest.constant';
19-
import { DocsReqDtoType } from '@customType/DTO';
19+
import { DocsReqDtoType } from '@customType/dto';
2020

2121
const Interviewee = () => {
2222
usePreventLeave();

0 commit comments

Comments
Β (0)