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.
📌 PR 설명
visible
prop 을 통해 Tooltip 의visible
을 제어하려 했으나 Tooltip 이 가지는 기본 기능(handleMouseUp 등)을 사용하여currentVisible
값을 컨트롤 하려면onChangeVisible
함수를 사용해야 하고, 이 함수와 Tooltip 함수를 사용하는 곳에서visible
관련 setter 함수를 사용하면 상태가 계속 바뀌는 현상이 있어 Popover 와 같이 flag 로 제어하는 것으로 수정하였습니다.