feat: restore padlock emoji for encrypted content indicator

This commit is contained in:
Gigi
2025-10-17 20:21:07 +02:00
parent 043ea168fb
commit f977561779

View File

@@ -553,7 +553,7 @@ const Debug: React.FC<DebugProps> = ({ relayPool }) => {
<div className="mt-1 flex gap-3 flex-wrap">
<span>Size: {formatBytes(size)}</span>
<span>Public: {counts.public}</span>
{counts.private > 0 && <span>Has encrypted content</span>}
{counts.private > 0 && <span>🔒 Has encrypted content</span>}
</div>
<div className="opacity-50 mt-1 text-[10px] break-all">ID: {evt.id}</div>
</div>