about summary refs log tree commit diff
path: root/app/javascript/mastodon/components/picture_in_picture_placeholder.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/javascript/mastodon/components/picture_in_picture_placeholder.js')
-rw-r--r--app/javascript/mastodon/components/picture_in_picture_placeholder.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/javascript/mastodon/components/picture_in_picture_placeholder.js b/app/javascript/mastodon/components/picture_in_picture_placeholder.js
index 19d15c18b..0effddef9 100644
--- a/app/javascript/mastodon/components/picture_in_picture_placeholder.js
+++ b/app/javascript/mastodon/components/picture_in_picture_placeholder.js
@@ -22,7 +22,7 @@ class PictureInPicturePlaceholder extends React.PureComponent {
   handleClick = () => {
     const { dispatch } = this.props;
     dispatch(removePictureInPicture());
-  }
+  };
 
   setRef = c => {
     this.node = c;
@@ -30,7 +30,7 @@ class PictureInPicturePlaceholder extends React.PureComponent {
     if (this.node) {
       this._setDimensions();
     }
-  }
+  };
 
   _setDimensions () {
     const width  = this.node.offsetWidth;