diff --git a/app/soapbox/components/status.js b/app/soapbox/components/status.js index f8d46b043..8acb4e7f5 100644 --- a/app/soapbox/components/status.js +++ b/app/soapbox/components/status.js @@ -151,14 +151,16 @@ class Status extends ImmutablePureComponent { } componentWillUnmount() { - if (this.node && this.props.getScrollPosition) { - const position = this.props.getScrollPosition(); - if (position !== null && this.node.offsetTop < position.top) { - requestAnimationFrame(() => { - this.props.updateScrollBottom(position.height - position.top); - }); - } - } + // FIXME: Run this code only when a status is being deleted. + // + // if (this.node && this.props.getScrollPosition) { + // const position = this.props.getScrollPosition(); + // if (position !== null && this.node.offsetTop < position.top) { + // requestAnimationFrame(() => { + // this.props.updateScrollBottom(position.height - position.top); + // }); + // } + // } } handleToggleMediaVisibility = () => {