diff options
Diffstat (limited to 'packages/dev-tools-pages')
-rw-r--r-- | packages/dev-tools-pages/ts/components/Animations/index.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/dev-tools-pages/ts/components/Animations/index.tsx b/packages/dev-tools-pages/ts/components/Animations/index.tsx index bf35c0784..f750d4d94 100644 --- a/packages/dev-tools-pages/ts/components/Animations/index.tsx +++ b/packages/dev-tools-pages/ts/components/Animations/index.tsx @@ -40,7 +40,7 @@ class Animation extends React.PureComponent<AnimationProps, AnimationState> { handleResize() { clearTimeout(this.timeout); - this.timeout = setTimeout(this.updateAnimationSize, 200); + this.timeout = setTimeout(this.updateAnimationSize, 50); } updateAnimationSize() { |