Skip to content

Commit 16ba36c

Browse files
authored
Merge pull request #140 from boostcampwm-2022/139-hotfix-customtypedto-customtypedto
[HOTFIX] fix filename case issue
2 parents 19ff84e + efd0a0b commit 16ba36c

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)