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:
Jan-Henrik Bruhn 2025-12-21 00:09:53 +01:00
parent 0e84f7ebe5
commit e1a64e9459

View file

@ -182,7 +182,9 @@ export function AppHeader() {
{/* Error popover content */} {/* Error popover content */}
{(machineErrorMessage || pyodideError) && ( {(machineErrorMessage || pyodideError) && (
<ErrorPopoverContent <ErrorPopoverContent
machineError={machineError} machineError={
machineError != 0xdd ? machineError : undefined
}
isPairingError={isPairingError} isPairingError={isPairingError}
errorMessage={machineErrorMessage} errorMessage={machineErrorMessage}
pyodideError={pyodideError} pyodideError={pyodideError}