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

This reverts commit 9df92e91e7, reversing
changes made to 39b4ee9f09.
This commit is contained in:
Alex Gleason 2022-11-20 12:27:30 -06:00
parent 9df92e91e7
commit 6444632324
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 1 additions and 8 deletions

View File

@ -14,14 +14,7 @@ const AutosuggestAccount: React.FC<IAutosuggestAccount> = ({ id }) => {
if (!account) return null; if (!account) return null;
return ( return <Account account={account} hideActions showProfileHoverCard={false} />;
<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>
);
}; };