File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ import { newRequest } from '@apis/core';
33import type {
44 CreateMatchingRequest ,
55 CreateMatchingResponse ,
6- GetMatchingListResponse ,
76 ModifyMatchingStatusRequest ,
87 ModifyMatchingStatusResponse ,
98} from './dto' ;
@@ -12,9 +11,6 @@ import type {
1211export const createMatchingApi = ( data : CreateMatchingRequest ) =>
1312 newRequest . post < CreateMatchingResponse > ( '/matching' , data ) ;
1413
15- // 매칭 리스트 조회
16- export const getMatchingListApi = ( ) => newRequest . get < GetMatchingListResponse > ( '/matching' ) ;
17-
1814// 매칭 요청 수락 및 거절
1915export const modifyMatchingStatusApi = ( matchingId : number , data : ModifyMatchingStatusRequest ) =>
2016 newRequest . patch < ModifyMatchingStatusResponse > ( `/matching/${ matchingId } ` , data ) ;
Original file line number Diff line number Diff line change 11import { atom } from 'recoil' ;
22
3- import type { chatRoomMessagesData } from '@apis/chatting/dto' ;
3+ import type { ChatRoomMessagesData } from '@apis/chatting/dto' ;
44
5- export const AllMesagesAtom = atom < chatRoomMessagesData [ ] | [ ] > ( {
5+ export const AllMesagesAtom = atom < ChatRoomMessagesData [ ] | [ ] > ( {
66 key : 'allMessagesAtom' ,
77 default : [ ] ,
88} ) ;
You can’t perform that action at this time.
0 commit comments