Merge branch 'fix-effect' into 'next'

Remove conditional to run style logic

See merge request soapbox-pub/soapbox-fe!1142
This commit is contained in:
Justin 2022-03-24 16:34:12 +00:00
commit e0b1abdfc0
3 changed files with 8 additions and 10 deletions

View file

@ -94,7 +94,6 @@ const Account = ({
};
React.useEffect(() => {
if (isOnScreen) {
const style: React.CSSProperties = {};
const actionWidth = actionRef.current?.clientWidth;
@ -105,7 +104,6 @@ const Account = ({
}
setStyle(style);
}
}, [isOnScreen, overflowRef, actionRef]);
if (!account) {