diff --git a/src/components/ui/Transition.tsx b/src/components/ui/Transition.tsx index c56baab91..9e38c3ec9 100644 --- a/src/components/ui/Transition.tsx +++ b/src/components/ui/Transition.tsx @@ -92,6 +92,7 @@ const Transition: FC = ({ const childElements = container.children; if (childElements.length === 1 && !activeKeyChanged) { if (name.startsWith('slide-optimized')) { + (childElements[0] as HTMLElement).style.transition = 'none'; (childElements[0] as HTMLElement).style.transform = 'translate3d(0, 0, 0)'; }