Refactor/#27: BottomSheet IOS height 오류 수정 및 각 커스텀 훅 init 로직 추가 #28
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.
📄 Summary
close #27
IOS 환경에서 height: max-content 와 min-height, max-height 값을 같이 쓰면 height: max-content가 동작하지 않는 오류를 발견했습니다. 따라서 height 옵션을 제거하여 min-height와 max-height 사이간 height가 동적으로 변동하도록 합니다. (PC, IOS, Android 모두 정상 동작 확인 완료)
필터링 초기화 버튼에서 사용할 onReset 로직을 추가합니다. 기존에 BottomSheet 을 unmount 하는 방식에서 수동으로 값을 초기화 하도록 합니다. (Pop-Up 애니메이션 미동작 오류 대응)
🙋🏻 More