From 67450f2775aaaa5be6c86f024b8d0651aaf664e4 Mon Sep 17 00:00:00 2001 From: nickbar01234 Date: Sat, 27 Apr 2024 01:45:05 -0400 Subject: [PATCH] Fix missing duration --- src/components/container/DropDownContainer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/container/DropDownContainer.tsx b/src/components/container/DropDownContainer.tsx index 1fa98a17..259cace7 100644 --- a/src/components/container/DropDownContainer.tsx +++ b/src/components/container/DropDownContainer.tsx @@ -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")