Skip to content

Commit

Permalink
Fix broken scale transition
Browse files Browse the repository at this point in the history
  • Loading branch information
schiehll committed Mar 19, 2019
1 parent 1975771 commit 974c662
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(1)' },
exited: { transform: 'scale(0)' }
exiting: { transform: 'scale(0)' },
exited: { transform: 'scale(1)' }
}
}

Expand Down

0 comments on commit 974c662

Please sign in to comment.