Testing blitz!

This commit is contained in:
Jack Kingsman
2026-02-10 16:47:46 -08:00
parent cf6df506d1
commit 875f197812
9 changed files with 1181 additions and 7 deletions
+10 -5
View File
@@ -462,9 +462,10 @@ export function MessageList({
)}
</>
)}
{msg.outgoing && (msg.acked > 0
? msg.paths && msg.paths.length > 0
? <span
{msg.outgoing &&
(msg.acked > 0 ? (
msg.paths && msg.paths.length > 0 ? (
<span
className="cursor-pointer hover:text-primary"
onClick={(e) => {
e.stopPropagation();
@@ -480,8 +481,12 @@ export function MessageList({
}}
title="View echo paths"
>{`${msg.acked > 1 ? msg.acked : ''}`}</span>
: `${msg.acked > 1 ? msg.acked : ''}`
: ' ?')}
) : (
`${msg.acked > 1 ? msg.acked : ''}`
)
) : (
' ?'
))}
</div>
</div>
</div>
+2 -2
View File
@@ -751,8 +751,8 @@ export function SettingsModal({
onChange={(e) => setMaxRadioContacts(e.target.value)}
/>
<p className="text-xs text-muted-foreground">
Favorite contacts load first, then recent non-repeater contacts until this
limit is reached (1-1000)
Favorite contacts load first, then recent non-repeater contacts until this limit
is reached (1-1000)
</p>
</div>