Skip to content
This repository was archived by the owner on May 29, 2026. It is now read-only.

Commit a6bfcc7

Browse files
staticoclaude
andcommitted
Use βœ— symbol and add brackets to timeout errors
Fixed error message formatting inconsistencies: - Changed X to βœ— (cross mark) in all error displays - Added brackets and βœ— to timeout messages (was "timeout", now "[βœ— timeout]") - Ensures all failed message indicators use consistent format: [βœ— error] Now all error states use the same cross mark symbol and bracket formatting. πŸ€– Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent f5e5a03 commit a6bfcc7

2 files changed

Lines changed: 9 additions & 3 deletions

File tree

β€Žsrc/ui/components/ChatPanel.tsxβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ function MessageRow({ message, nodeStore, isOwn, isSelected, width, meshViewConf
425425
return (
426426
<Text>
427427
{" "}<Text color={theme.fg.muted}>[</Text>
428-
<Text color={theme.status.offline}>X {formatErrorReason(message.errorReason)}</Text>
428+
<Text color={theme.status.offline}>βœ— {formatErrorReason(message.errorReason)}</Text>
429429
<Text color={theme.fg.muted}>]</Text>
430430
</Text>
431431
);

β€Žsrc/ui/components/DMPanel.tsxβ€Ž

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,13 @@ function MessageRow({ message, nodeStore, isOwn, isSelected, textWidth, meshView
270270
case "pending": {
271271
const elapsed = now - message.timestamp * 1000;
272272
if (elapsed > MESSAGE_TIMEOUT_MS) {
273-
return <Text color={theme.status.offline}> timeout</Text>;
273+
return (
274+
<Text>
275+
{" "}<Text color={theme.fg.muted}>[</Text>
276+
<Text color={theme.status.offline}>βœ— timeout</Text>
277+
<Text color={theme.fg.muted}>]</Text>
278+
</Text>
279+
);
274280
}
275281
return <AnimatedDots />;
276282
}
@@ -286,7 +292,7 @@ function MessageRow({ message, nodeStore, isOwn, isSelected, textWidth, meshView
286292
return (
287293
<Text>
288294
{" "}<Text color={theme.fg.muted}>[</Text>
289-
<Text color={theme.status.offline}>X {formatErrorReason(message.errorReason)}</Text>
295+
<Text color={theme.status.offline}>βœ— {formatErrorReason(message.errorReason)}</Text>
290296
<Text color={theme.fg.muted}>]</Text>
291297
</Text>
292298
);

0 commit comments

Comments
Β (0)