Merged
Conversation
Fosol
commented
Dec 15, 2025
| <div className="main-window"> | ||
| <LayoutErrorBoundary> | ||
| <main> | ||
| <Outlet /> |
Collaborator
Author
There was a problem hiding this comment.
If it's an unauthenticated attempt to view the reports then redirect to subscriber site. This is part of a temporary work around.
| const htmlBlob = new Blob([email.body], { type: 'text/html' }); | ||
| const textBlob = new Blob([email.body], { type: 'text/plain' }); | ||
| // Replace the URL so that it points to the external site. | ||
| let fixed_body = email.body; |
Collaborator
Author
There was a problem hiding this comment.
We need the email to only use the external URL. Because we are generating it in the Editor application it can result in the wrong one.
Fosol
added a commit
to Fosol/tno
that referenced
this pull request
Dec 20, 2025
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.
DRAFT
This has a minor fix and a workaround because of the CHES outage. It redirects unauthenticated users back to the subscriber site if they click one of our earlier email URL values.