mirror of
https://github.com/jhbruhn/respira.git
synced 2026-01-27 10:23:41 +00:00
fix: Filter out error code 0xDD from error display
- Exclude machine error code 0xDD (221 decimal) from error popover - This error code is non-critical and should not be displayed to users - Maintains all other error codes and messages 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
0e84f7ebe5
commit
e1a64e9459
1 changed files with 3 additions and 1 deletions
|
|
@ -182,7 +182,9 @@ export function AppHeader() {
|
|||
{/* Error popover content */}
|
||||
{(machineErrorMessage || pyodideError) && (
|
||||
<ErrorPopoverContent
|
||||
machineError={machineError}
|
||||
machineError={
|
||||
machineError != 0xdd ? machineError : undefined
|
||||
}
|
||||
isPairingError={isPairingError}
|
||||
errorMessage={machineErrorMessage}
|
||||
pyodideError={pyodideError}
|
||||
|
|
|
|||
Loading…
Reference in a new issue