Open
Conversation
- Add root-level error boundary in _layout.tsx - Add screen-level error boundaries to chat, wallet, and chat-history screens - Create ErrorFallback component for consistent error UI - Remove temporary ErrorBoundaryTest component - Ensure error boundaries reset properly on mobile web
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Implements React error boundaries across the application to prevent complete app crashes when components throw errors. This addresses issue #112 by adding graceful error handling at multiple levels.
Changes:
react-error-boundarydependency for robust error boundary implementationErrorFallbackcomponent with branded UI matching app design (#FFEFE3 background, Satoshi fonts)app/_layout.tsxto catch app-wide errorsapp/(main)/chat.tsx)app/(main)/wallet.tsx)app/(main)/chat-history.tsx)resetKeysand state management for mobile web compatibilityErrorBoundaryTest)Error Recovery:
resetKeysto force full remount on error recoveryType of Change
Release
Is this a release? No
Testing
Manual Testing:
Error Scenarios Tested:
Platforms Tested:
Checklist
Related Issue
Closes #112
Additional Notes
react-error-boundarylibrary following React best practices