Revert "Merge branch 'autosuggest-profiles-fix' into 'develop'"

This reverts commit 9df92e91e7, reversing
changes made to 39b4ee9f09.
modal-video-fix
Alex Gleason 2022-11-20 12:27:30 -06:00
rodzic 9df92e91e7
commit 6444632324
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 7211D1F99744FBB7
1 zmienionych plików z 1 dodań i 8 usunięć

Wyświetl plik

@ -14,14 +14,7 @@ const AutosuggestAccount: React.FC<IAutosuggestAccount> = ({ id }) => {
if (!account) return null;
return (
<div className='relative'>
{/* HACK: The <Account> component stops click events, so insert this div as something to click. */}
<div className='absolute inset-0' />
<Account account={account} showProfileHoverCard={false} withLinkToProfile={false} hideActions />
</div>
);
return <Account account={account} hideActions showProfileHoverCard={false} />;
};