Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
f77c836
feat: 라우터에 새 라우터 추가
ljh130334 Jul 3, 2025
92f335f
feat: 모임 만들기 페이지 퍼블리싱
ljh130334 Jul 3, 2025
02887c4
refactor: CreateGroup 컴포넌트 디자인 시스템 적용
ljh130334 Jul 7, 2025
1ab17ef
feat: 책 검색 버튼 구현
ljh130334 Jul 7, 2025
ad6d345
feat: 바텀시트 검색창 구현
ljh130334 Jul 8, 2025
4b9fe94
feat: 바텀 시트 구현
ljh130334 Jul 8, 2025
acfd377
refactor: BookSearchBottomSheet 컴포넌트 코드 정리 및 구조화
ljh130334 Jul 8, 2025
7425b15
feat: 삭제 핸들러 함수 추가
ljh130334 Jul 8, 2025
90e76f5
feat: 책 선택 컴포넌트 구현
ljh130334 Jul 8, 2025
9742f08
feat: 책 장르 선택 구현
ljh130334 Jul 8, 2025
93f653e
refactor: 스타일 파일들을 컴포넌트별로 분리하여 독립성 향상
ljh130334 Jul 8, 2025
35a8d72
refactor: 방 제목과 한 줄 소개 입력 필드 스타일 수정
ljh130334 Jul 8, 2025
daea781
feat: 타임피커 구현 및 모임 활동 기간 구현
ljh130334 Jul 8, 2025
ea9f529
feat: 인원 제한 섹션을 휠 선택기로 리팩토링
ljh130334 Jul 8, 2025
68d6c4b
feat: 비공개 설정 스타일링 및 MemberLimitSection에 onMemberLimitChange prop 연결
ljh130334 Jul 8, 2025
b3c5f00
feat: 비공개 설정 시 비밀번호 입력 기능 추가
ljh130334 Jul 10, 2025
fdc0fef
fix: 비밀번호 입력 개선 - 4자리 제한 강화
ljh130334 Jul 10, 2025
41bc1b1
fix: CreateGroup에서 비밀번호 상태 및 핸들러 추가하여 X 버튼 기능 활성화
ljh130334 Jul 10, 2025
989d620
fix: conflict 수정
ljh130334 Jul 10, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@types/react-datepicker": "^7.0.0",

Copy link
Copy Markdown

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

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
"@types/react-datepicker": "^7.0.0",
{
"dependencies": {
"react-datepicker": "8.4.0"
},
"devDependencies": {
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@types/react-datepicker": "^7.0.0"
}
}
🤖 Prompt for AI Agents
In package.json at line 17, the dependency "@types/react-datepicker" is
currently listed under dependencies but should be moved to devDependencies
because it is only needed during development for type definitions. Remove it
from dependencies and add it to the devDependencies section instead.

"react": "^19.1.0",
"react-datepicker": "^8.4.0",
"react-dom": "^19.1.0",
"react-router-dom": "^7.6.0",
"zustand": "^5.0.4"
Expand Down
93 changes: 93 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions src/assets/books/deer.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions src/assets/books/hormone.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions src/assets/books/life.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions src/assets/books/tomato.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions src/assets/group/close.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions src/assets/group/search.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions src/assets/group/search_white.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading