From f9920d2f247bb09990b4b839671b47a4e0d47ab6 Mon Sep 17 00:00:00 2001 From: bosiraphael <71827178+bosiraphael@users.noreply.github.com> Date: Tue, 31 Oct 2023 16:38:23 +0100 Subject: [PATCH] Fix CompanyBoardCard height (#2301) * fix view-fields seeds * closeDate was duplicated * fix CompanyBoardCard height --- .../ui/utilities/animation/components/AnimatedEaseInOut.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/src/modules/ui/utilities/animation/components/AnimatedEaseInOut.tsx b/front/src/modules/ui/utilities/animation/components/AnimatedEaseInOut.tsx index e712a0816..7f52284ae 100644 --- a/front/src/modules/ui/utilities/animation/components/AnimatedEaseInOut.tsx +++ b/front/src/modules/ui/utilities/animation/components/AnimatedEaseInOut.tsx @@ -30,7 +30,7 @@ export const AnimatedEaseInOut = ({ height: 0, opacity: 0, }} - animate={{ height: 100, opacity: 1 }} + animate={{ height: 'fit-content', opacity: 1 }} exit={{ height: 0, opacity: 0, marginBottom: 0, marginTop: 0 }} transition={{ duration: theme.animation.duration[duration],