Merge remote-tracking branch 'origin/develop' into markup-css

This commit is contained in:
Alex Gleason
2022-11-20 15:00:58 -06:00
16 changed files with 227 additions and 271 deletions

View File

@@ -58,12 +58,7 @@ const ProfileDropdown: React.FC<IProfileDropdown> = ({ account, children }) => {
const renderAccount = (account: AccountEntity) => {
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>
<Account account={account} showProfileHoverCard={false} withLinkToProfile={false} hideActions />
);
};