feat: display full event ID for easy copy/paste

This commit is contained in:
Gigi
2025-10-17 20:20:48 +02:00
parent 5336bafed4
commit 043ea168fb

View File

@@ -555,7 +555,7 @@ const Debug: React.FC<DebugProps> = ({ relayPool }) => {
<span>Public: {counts.public}</span>
{counts.private > 0 && <span>Has encrypted content</span>}
</div>
<div className="opacity-50 mt-1 text-[10px]">ID: {evt.id?.slice(0, 16)}...</div>
<div className="opacity-50 mt-1 text-[10px] break-all">ID: {evt.id}</div>
</div>
)
})}