-
Notifications
You must be signed in to change notification settings - Fork 930
fix: ensure signing out cannot cause any runtime render errors #13137
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
4da94ef
fix: remove some of the jank around our core App component
Parkreiner 9986024
refactor: scope navigation logic more aggressively
Parkreiner 7004c9c
refactor: add explicit return type to useAuthenticated
Parkreiner ebfaec5
refactor: clean up ProxyContext code
Parkreiner 1192eb3
wip: add code for consolidating the HTML metadata
Parkreiner bbe2ae0
refactor: clean up hook logic
Parkreiner 1c41937
refactor: rename useHtmlMetadata to useEmbeddedMetadata
Parkreiner 79e9c45
fix: correct names that weren't updated
Parkreiner 81f2cd9
fix: update type-safety of useEmbeddedMetadata further
Parkreiner 390418f
wip: switch codebase to use metadata hook
Parkreiner 486f292
Merge branch 'main' into mes/login-fix
Parkreiner b77af73
Merge branch 'mes/login-fix' of https://github.com/coder/coder into m…
Parkreiner e072f7a
refactor: simplify design of metadata hook
Parkreiner 2a58322
fix: update stray type mismatches
Parkreiner b55abb7
fix: more type fixing
Parkreiner c45e1b7
fix: resolve illegal invocation error
Parkreiner 2a63c1d
fix: get metadata issue resolved
Parkreiner 4d3b155
fix: update comments
Parkreiner 8067e77
chore: add unit tests for MetadataManager
Parkreiner 5e6e974
fix: beef up tests
Parkreiner 772b96f
fix: update typo in tests
Parkreiner File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next
Next commit
fix: remove some of the jank around our core App component
- Loading branch information
commit 4da94ef26c49fb4ac5127b003cb464d97d1a1cb5
There are no files selected for viewing
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Important – before, if any of the sub-components in
AppProviders
threw an error, we had nothing to catch it. MovedErrorBoundary
to be the top-most component