Merged
Conversation
Owner
Author
|
Ideally, unsuccessful logins should also be logged, as well as whatever else you find important |
timofeykafanov
approved these changes
Mar 12, 2026
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.
This pull request introduces Sentry error tracking to the client application, enabling both build-time and runtime error monitoring. It also adds a development-only button to trigger test errors, and updates dependencies to support Sentry integration.
Sentry Integration:
@sentry/react,@sentry/vite-plugin) and updatedpnpm-lock.yamlto include all required Sentry packages. [1] [2] [3]client/app/root.tsxusing the DSN from environment variables, enabling runtime error tracking. [1] [2]client/vite.config.tsfor build-time error reporting and sourcemap upload. [1] [2].env.sentry-build-pluginto.gitignoreto prevent committing sensitive Sentry configuration.Development Tools:
ErrorButtoncomponent that throws a test error when clicked, and included it in theWelcomescreen for development builds only. [1] [2] [3]Dependency Updates:
pnpm-lock.yamlwith new and upgraded packages required for Sentry and its plugins, as well as related utilities. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13] [14]