Skip to content

Commit 10f2cf6

Browse files
committed
Fix showAnimations logic
1 parent aea8973 commit 10f2cf6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pages/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import { white, color, grey, iPadMaxW } from '../lib/styles'
2828
import withData from '../lib/withData'
2929

3030
const DEVELOPING_ANIMATIONS = false
31-
const showAnimations = (process.env.NODE_ENV !== 'production' && DEVELOPING_ANIMATIONS)
31+
const showAnimations = (process.env.NODE_ENV === 'production' || DEVELOPING_ANIMATIONS)
3232

3333
let Ripple = RippleComponent
3434
const Noop = ({ children }) => <div>{children}</div>

0 commit comments

Comments
 (0)