pl-fe: fix

Signed-off-by: Nicole Mikołajczyk <git@mkljczk.pl>
This commit is contained in:
Nicole Mikołajczyk
2025-04-01 21:06:07 +02:00
parent e8727ae1c6
commit 308724b302

View File

@ -83,15 +83,17 @@ const ShoutboxMessageList: React.FC = () => {
'ml-auto': isMyMessage,
})}
>
<HoverAccountWrapper accountId={shoutboxMessage.author.id} element='span'>
<Link to={`/@${shoutboxMessage.author.acct}`} title={shoutboxMessage.author.acct}>
<Avatar
src={shoutboxMessage.author.avatar}
alt={shoutboxMessage.author.avatar_description}
size={32}
/>
</Link>
</HoverAccountWrapper>
{!isMyMessage && (
<HoverAccountWrapper accountId={shoutboxMessage.author.id} element='span'>
<Link to={`/@${shoutboxMessage.author.acct}`} title={shoutboxMessage.author.acct}>
<Avatar
src={shoutboxMessage.author.avatar}
alt={shoutboxMessage.author.avatar_description}
size={32}
/>
</Link>
</HoverAccountWrapper>
)}
<Stack
space={0.5}