about summary refs log tree commit diff
path: root/app/javascript/mastodon/components/animated_number.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/javascript/mastodon/components/animated_number.js')
-rw-r--r--app/javascript/mastodon/components/animated_number.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/javascript/mastodon/components/animated_number.js b/app/javascript/mastodon/components/animated_number.js
index b1aebc73e..ce688f04f 100644
--- a/app/javascript/mastodon/components/animated_number.js
+++ b/app/javascript/mastodon/components/animated_number.js
@@ -38,13 +38,13 @@ export default class AnimatedNumber extends React.PureComponent {
     const { direction } = this.state;
 
     return { y: -1 * direction };
-  }
+  };
 
   willLeave = () => {
     const { direction } = this.state;
 
     return { y: spring(1 * direction, { damping: 35, stiffness: 400 }) };
-  }
+  };
 
   render () {
     const { value, obfuscate } = this.props;