diff --git a/app/soapbox/components/scroll-top-button.tsx b/app/soapbox/components/scroll-top-button.tsx index eb5d00593..5de90abb6 100644 --- a/app/soapbox/components/scroll-top-button.tsx +++ b/app/soapbox/components/scroll-top-button.tsx @@ -49,7 +49,7 @@ const ScrollTopButton: React.FC = ({ }, 150, { trailing: true }), [autoload, threshold, autoloadThreshold]); const scrollUp = () => { - window.scrollTo({ top: 0, behavior: 'smooth' }); + window.scrollTo({ top: 0 }); }; const handleClick: React.MouseEventHandler = () => {