Conversation
Deploying rainbow with
|
| Latest commit: |
5130119
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://21a4f60a.rainbow-ctx.pages.dev |
| Branch Preview URL: | https://sentry-tweaks.rainbow-ctx.pages.dev |
There was a problem hiding this comment.
Pull Request Overview
This PR introduces a debug line that throws an error when a specific localStorage item is not found. This appears to be temporary debugging code that was likely added during development to troubleshoot an issue.
Key Changes:
- Added a localStorage check that throws an error for debugging purposes
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| }), | ||
| ); | ||
|
|
||
| if (!localStorage.getItem("lkjlkjlkjlk")) throw new Error("Debugging"); |
There was a problem hiding this comment.
This appears to be temporary debugging code that should be removed before merging. The localStorage key 'lkjlkjlkjlk' is meaningless and this check will throw an error in production, breaking the application for users.
| if (!localStorage.getItem("lkjlkjlkjlk")) throw new Error("Debugging"); |
|
Errors during render are not being reported to sentry, it seems :^( Also would be interesting to handle all uncaught exceptions outside of the render loop (e.g. event handlers) |
No description provided.