Skip to content

Commit 372e8ec

Browse files
author
Chris Johnson
committed
fix(FadeInOut): Fix status opacity for exiting
Opacity should be 0 for all statuses except entered
1 parent ee42ae8 commit 372e8ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/animations/FadeInOut/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const statusStyles = {
1515
opacity: 0,
1616
},
1717
exiting: {
18-
opacity: 1,
18+
opacity: 0,
1919
},
2020
};
2121

0 commit comments

Comments
 (0)