Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix missing duration
Browse files Browse the repository at this point in the history
nickbar01234 committed Apr 27, 2024
1 parent ac5fe97 commit 393f1d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/container/DropDownContainer.tsx
Original file line number Diff line number Diff line change
@@ -44,7 +44,7 @@ const DropDownContainer = (props: DropDownContainerProps) => {
style={
showItems
? { transition: "max-height 1s ease" }
: { transition: "max-height 0.3 ease" }
: { transition: "max-height 0.3s ease" }
}
onTransitionEnd={(ref) =>
(ref.currentTarget.style["overflow"] = "auto")

0 comments on commit 393f1d2

Please sign in to comment.