diff --git a/app/soapbox/features/ui/components/profile-info-panel.tsx b/app/soapbox/features/ui/components/profile-info-panel.tsx index eeb1d507c..addeff9d2 100644 --- a/app/soapbox/features/ui/components/profile-info-panel.tsx +++ b/app/soapbox/features/ui/components/profile-info-panel.tsx @@ -134,7 +134,6 @@ const ProfileInfoPanel: React.FC = ({ account, username }) => ); } - const content = { __html: account.note_emojified }; const deactivated = account.pleroma?.deactivated ?? false; const displayNameHtml = deactivated ? { __html: intl.formatMessage(messages.deactivated) } : { __html: account.display_name_html }; const memberSinceDate = intl.formatDate(account.created_at, { month: 'long', year: 'numeric' }); @@ -174,7 +173,7 @@ const ProfileInfoPanel: React.FC = ({ account, username }) => {account.note.length > 0 && ( - + )}