Skip to content

Commit

Permalink
Fix missing duration
Browse files Browse the repository at this point in the history
  • Loading branch information
nickbar01234 committed Apr 28, 2024
1 parent 09f618a commit 67450f2
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
Expand Up @@ -47,7 +47,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")
Expand Down

0 comments on commit 67450f2

Please sign in to comment.