Clarify phrasing on cracker panel

This commit is contained in:
Jack Kingsman
2026-01-14 19:03:31 -08:00
parent 442f8ccded
commit 0749b5ea4a
4 changed files with 7 additions and 7 deletions

View File

@@ -478,13 +478,13 @@ export function CrackerPanel({ packets, channels, onChannelCreate, onRunningChan
onChange={(e) => setDecryptHistorical(e.target.checked)}
className="rounded"
/>
Decrypt historical
Decrypt historical packets if key found
</label>
{decryptHistorical && (
<span className="text-xs text-muted-foreground">
{undecryptedPacketCount !== null && undecryptedPacketCount > 0
? `(${undecryptedPacketCount.toLocaleString()} packets; messages stream in as decrypted)`
: '(messages stream in as decrypted)'}
? `(${undecryptedPacketCount.toLocaleString()} packets; messages will stream in as decrypted)`
: '(messages will stream in as decrypted)'}
</span>
)}