diff --git a/apps/sim/components/emcn/components/modal/modal.tsx b/apps/sim/components/emcn/components/modal/modal.tsx index 3995947dba1..f9afb95b6d6 100644 --- a/apps/sim/components/emcn/components/modal/modal.tsx +++ b/apps/sim/components/emcn/components/modal/modal.tsx @@ -51,13 +51,6 @@ import { Button } from '../button/button' const ANIMATION_CLASSES = 'data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:animate-out data-[state=open]:animate-in motion-reduce:animate-none' -/** - * Modal content animation classes. - * We keep only the slide animations (no zoom) to stabilize positioning while avoiding scale effects. - */ -const CONTENT_ANIMATION_CLASSES = - 'data-[state=closed]:slide-out-to-top-[50%] data-[state=open]:slide-in-from-top-[50%] motion-reduce:animate-none' - /** * Root modal component. Manages open state. */ @@ -160,8 +153,6 @@ const ModalContent = React.forwardRef<