Skip to content

Commit

Permalink
Fix for #108 issue (#110)
Browse files Browse the repository at this point in the history
  • Loading branch information
besLisbeth authored and schiehll committed Mar 19, 2019
1 parent 079e372 commit 065b8eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Transition.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ const transitionStyles = {
[transitions.SCALE]: {
entering: { transform: 'scale(0)' },
entered: { transform: 'scale(1)' },
exiting: { transform: 'scale(0)' },
exited: { transform: 'scale(1)' }
exiting: { transform: 'scale(1)' },
exited: { transform: 'scale(0)' }
}
}

Expand Down

0 comments on commit 065b8eb

Please sign in to comment.