From fd034cc1e4475fa18cfa6a6afb79d09931189ecd Mon Sep 17 00:00:00 2001 From: Leonid Logvinov Date: Wed, 9 Jan 2019 10:21:58 +0100 Subject: Remove redundant semicolons --- packages/dev-tools-pages/ts/components/animations/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'packages/dev-tools-pages/ts/components/animations') diff --git a/packages/dev-tools-pages/ts/components/animations/index.tsx b/packages/dev-tools-pages/ts/components/animations/index.tsx index 7f7b36c21..c9672db05 100644 --- a/packages/dev-tools-pages/ts/components/animations/index.tsx +++ b/packages/dev-tools-pages/ts/components/animations/index.tsx @@ -52,7 +52,7 @@ class BaseAnimation extends React.PureComponent private readonly _handleResize = () => { clearTimeout(this._timeout); this._timeout = window.setTimeout(this._updateAnimationSize, 50); - }; + } private readonly _updateAnimationSize = () => { const windowWidth = window.innerWidth; let width; @@ -66,7 +66,7 @@ class BaseAnimation extends React.PureComponent } this.setState({ width, height }); - }; + } } const Container = -- cgit v1.2.3