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,18 +94,16 @@ const Account = ({
};
React.useEffect(() => {
if (isOnScreen) {
const style: React.CSSProperties = {};
const actionWidth = actionRef.current?.clientWidth;
const style: React.CSSProperties = {};
const actionWidth = actionRef.current?.clientWidth;
if (overflowRef.current) {
style.maxWidth = overflowRef.current.clientWidth - 30 - avatarSize - actionWidth;
} else {
style.visibility = 'hidden';
}
setStyle(style);
if (overflowRef.current) {
style.maxWidth = overflowRef.current.clientWidth - 30 - avatarSize - actionWidth;
} else {
style.visibility = 'hidden';
}
setStyle(style);
}, [isOnScreen, overflowRef, actionRef]);
if (!account) {