From fc811be2e323a2e46d546e062511a56dc1d4988e Mon Sep 17 00:00:00 2001 From: Devin Fee Date: Mon, 1 Apr 2019 09:51:30 -0700 Subject: [PATCH] added tslint ignore to docs frame --- src/__docs__/components/frame.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/__docs__/components/frame.tsx b/src/__docs__/components/frame.tsx index 7f15f4d3..07dac082 100644 --- a/src/__docs__/components/frame.tsx +++ b/src/__docs__/components/frame.tsx @@ -96,7 +96,7 @@ export class Frame extends React.Component { ); } } - } + }; private readonly handleLoad = () => { if ( @@ -109,7 +109,7 @@ export class Frame extends React.Component { this.forceUpdate(); this.doUpdateHeight(); } - } + }; private readonly doUpdateHeight = () => { if ( @@ -123,7 +123,7 @@ export class Frame extends React.Component { }px`; } this.updateHeight(); - } + }; private readonly updateHeight = () => { const { updateHeightDelay } = this.props; @@ -136,5 +136,5 @@ export class Frame extends React.Component { } else { this.updateHeightEnabled = false; } - } + }; }