Skip to content

Commit

Permalink
FE-32 브랜치 최신화 (#189)
Browse files Browse the repository at this point in the history
* build 오류 해결

* build 오류 해결 중

* .http 파일 삭제

* merge main

* merge epic/FE-32--search-page

* 빌드 오류 해결 중
  • Loading branch information
imsoohyeok authored Aug 4, 2024
1 parent 25849cd commit 6c7eb14
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 308 deletions.
31 changes: 0 additions & 31 deletions src/apis/queries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,37 +60,6 @@ const queries = createQueryKeyStore({
queryFn: () => getEpigrams(request),
}),
},
// NOTE: Epigram 관련 query함수
epigram: {
getEpigram: (request: EpigramRequestType) => ({
queryKey: ['epigram', request.id, request],
queryFn: () => {
if (request.id === undefined) {
throw new Error('Epigram ID가 제공되지 않았습니다.');
}
return getEpigram(request);
},
enabled: request.id !== undefined,
}),
},
epigramComment: {
getComments: (request: CommentRequestType) => ({
queryKey: ['epigramComments', request],
queryFn: () => getEpigramComments(request),
}),
},
emotion: {
getMonthlyEmotionLogs: (request: GetMonthlyEmotionLogsRequestType) => ({
queryKey: ['getMonthlyEmotionLogs', request],
queryFn: () => getMonthlyEmotionLogs(request),
}),
},
epigrams: {
getEpigrams: (request: GetEpigramsParamsType) => ({
queryKey: ['getEpigrams', request],
queryFn: () => getEpigrams(request),
}),
},
});

export default queries;
40 changes: 0 additions & 40 deletions src/pageLayout/MypageLayout/EmotionMonthlyLogs.tsx

This file was deleted.

182 changes: 0 additions & 182 deletions src/pageLayout/MypageLayout/MyContent.tsx

This file was deleted.

45 changes: 0 additions & 45 deletions src/pageLayout/MypageLayout/MyPageLayout.tsx

This file was deleted.

5 changes: 0 additions & 5 deletions src/pages/mypage/index.tsx

This file was deleted.

10 changes: 5 additions & 5 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,14 @@ module.exports = {
'sub-gray_3': '#EFF3F8',
},
screens: {
'sm': '640px',
'md': '768px',
'lg': '1024px',
'xl': '1280px',
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
'2xl': '1536px',
},
backgroundImage: {
'stripes': 'repeating-linear-gradient(to bottom, #ffffff, #ffffff 23px, #e5e7eb 23px, #e5e7eb 24px)',
stripes: 'repeating-linear-gradient(to bottom, #ffffff, #ffffff 23px, #e5e7eb 23px, #e5e7eb 24px)',
},
},
},
Expand Down

0 comments on commit 6c7eb14

Please sign in to comment.