Skip to content

Commit

Permalink
fix transition
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahgm committed Dec 7, 2022
1 parent fe40845 commit 25df4f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/components/src/Overlay/Overlay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export const Overlay = ({ children, container, open }: OverlayProps) => {

return (
<ReactAriaOverlay portalContainer={container}>
<Transition nodeRef={nodeRef} timeout={{ enter: 0, exit: 550 }} in={open}>
<Transition nodeRef={nodeRef} timeout={duration} in={open} appear>
{state => (
<div
ref={nodeRef}
Expand Down

0 comments on commit 25df4f1

Please sign in to comment.