ui: add timestamp to chat join/leave status messages

Show xs timestamp after system messages (join/leave) in chat for
consistency with regular messages and zap messages.
This commit is contained in:
Claude
2026-01-12 12:47:38 +00:00
parent e50fcca386
commit 616e0d9715

View File

@@ -172,7 +172,7 @@ const MessageItem = memo(function MessageItem({
<div className="flex items-center px-3 py-1">
<span className="text-xs text-muted-foreground">
* <UserName pubkey={message.author} className="text-xs" />{" "}
{message.content}
{message.content} <Timestamp timestamp={message.timestamp} />
</span>
</div>
);