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.
1. 무슨 이유로 코드를 변경했나요?
#266 을 구현했습니다
2. 어떤 위험이나 장애를 발견했나요?
3. 관련 스크린샷을 첨부해주세요.
2024-11-22.7.18.25.mov
4. 완료 사항
캘린더(월)에서 월별 조회 api 요청이 두번씩 보내지는 이슈를 해결했습니다
➡️ api를 호출하는 useEffect에 의존성배열로 start / end 값이 모두 걸려있었기 때문이었습니다,,
해당 값의 경우 유저로부터 입력받은(혹은 현재의) 월 값을 이용하여 각각 start, end로 formatting한 값이기 때문에 무조건! 같이 변경되며, 하나의 값만 변경되는 경우는 없습니다. 그래서 의존성배열의 값으로 start(
formattedStart
)값만 남겨두었습니다~!페이지 컴포넌트에서 userAPI를 가져오도록 수정했습니다
➡️ 캘린더 헤더의 일정 생성 버튼을 조건부 렌더링 하기 위해 userAPI를 사용합니다
근데 userAPI를 캘린더(달) 컴포넌트에서 불러오고 있었던 것,, 캘린더(년)으로 넘어갔다가 캘린더(월)로 돌아오면 userAPI 요청도 가는 상황,,,
그래서 해당 api 호출을 페이지 컴포넌트로 이동하여 해결했습니다~!
영상 확인해보시면 필요한 요청만 보냅니다,, 드디어,,~~!!!!!!!
5. 추가 사항