-
Notifications
You must be signed in to change notification settings - Fork 0
feat: 독서모임 생성을 위한 모임 만들기 페이지 구현 #32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
f77c836
feat: 라우터에 새 라우터 추가
ljh130334 92f335f
feat: 모임 만들기 페이지 퍼블리싱
ljh130334 02887c4
refactor: CreateGroup 컴포넌트 디자인 시스템 적용
ljh130334 1ab17ef
feat: 책 검색 버튼 구현
ljh130334 ad6d345
feat: 바텀시트 검색창 구현
ljh130334 4b9fe94
feat: 바텀 시트 구현
ljh130334 acfd377
refactor: BookSearchBottomSheet 컴포넌트 코드 정리 및 구조화
ljh130334 7425b15
feat: 삭제 핸들러 함수 추가
ljh130334 90e76f5
feat: 책 선택 컴포넌트 구현
ljh130334 9742f08
feat: 책 장르 선택 구현
ljh130334 93f653e
refactor: 스타일 파일들을 컴포넌트별로 분리하여 독립성 향상
ljh130334 35a8d72
refactor: 방 제목과 한 줄 소개 입력 필드 스타일 수정
ljh130334 daea781
feat: 타임피커 구현 및 모임 활동 기간 구현
ljh130334 ea9f529
feat: 인원 제한 섹션을 휠 선택기로 리팩토링
ljh130334 68d6c4b
feat: 비공개 설정 스타일링 및 MemberLimitSection에 onMemberLimitChange prop 연결
ljh130334 b3c5f00
feat: 비공개 설정 시 비밀번호 입력 기능 추가
ljh130334 fdc0fef
fix: 비밀번호 입력 개선 - 4자리 제한 강화
ljh130334 41bc1b1
fix: CreateGroup에서 비밀번호 상태 및 핸들러 추가하여 X 버튼 기능 활성화
ljh130334 989d620
fix: conflict 수정
ljh130334 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🛠️ Refactor suggestion
타입 정의 패키지를 devDependencies로 이동해야 합니다.
@types/react-datepicker는 개발 시에만 필요한 타입 정의이므로devDependencies로 이동하는 것이 좋습니다.- "@types/react-datepicker": "^7.0.0",그리고
devDependencies에 추가:"@types/react": "^19.1.2", "@types/react-dom": "^19.1.2", + "@types/react-datepicker": "^7.0.0",📝 Committable suggestion
🤖 Prompt for AI Agents