This commit is contained in:
Rachael Wright-Munn 2024-05-10 20:06:52 +00:00 committed by GitHub
commit 06d1733192
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 4 deletions

View File

@ -2,8 +2,6 @@ import PropTypes from 'prop-types';
import { defineMessages, injectIntl } from 'react-intl';
import { Link } from 'react-router-dom';
import ImmutablePropTypes from 'react-immutable-proptypes';
import ImmutablePureComponent from 'react-immutable-pure-component';
@ -35,10 +33,10 @@ class AccountAuthorize extends ImmutablePureComponent {
return (
<div className='account-authorize__wrapper'>
<div className='account-authorize'>
<Link to={`/@${account.get('acct')}`} className='detailed-status__display-name'>
<a href={account.get('uri')} className='detailed-status__display-name'>
<div className='account-authorize__avatar'><Avatar account={account} size={48} /></div>
<DisplayName account={account} />
</Link>
</a>
<div className='account__header__content translate' dangerouslySetInnerHTML={content} />
</div>