-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: 리뷰 작성하기 페이지 접속시 최상단으로 * fix: lint * fix: margin 수정 * feat: 이미지 업로드 로직 * feat: api params 수정 * feat: 리뷰 get api 연결 * fix: 이미지 post 수정 시도 * fix: 이미지 저장 api 수정 * chore:불필요한 코드 삭제 * fix:빌드 오류 해결 * feat: 리뷰 날짜 받아오기 * feat:날짜 저장 * feat: 리뷰 탭 필터 로직 수정 * feat: 리뷰 탭 회색 별 추가 * feat: 필터 바깥 누르면 저장 X 되도록 로직 수정 * feat: key 변경 * feat: 리뷰 탭 라우터 분리 * feat: 글자 가운데 * 처리 * feat: 리뷰 탭 디폴트 카테고리 유저 정보 받아오기 구현' * fix: 서버 오류 수정 * fix: 파일명 필터링 기능 추가 * fix:유니코드 수정 * fix: key warning 해결 * feat: 이름 글자수 해결 * feat: 리뷰 등록 후 리뷰 get 오류 수정 * feat: 이미지 비율 조정 * feat: 바텀시트, 가이드 중앙정렬 * refactor: map으로 돌리기 * feat: textarea 리사이징 막기 * fix: 디폴트 카테고리 로직 --------- Co-authored-by: aazkgh <[email protected]>
- Loading branch information
Showing
26 changed files
with
344 additions
and
209 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,13 @@ | ||
export interface ReviewResponse { | ||
writer: string; | ||
id: number; | ||
place: number; | ||
writer: number; | ||
rate: number; | ||
description: string; | ||
convenience: string[]; | ||
imgUrl: string[]; | ||
imgUrls: string[]; | ||
date: string; | ||
USER: { | ||
name: string; | ||
}; | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.