fix(ux-security): address UI, auth feedback and SVG config issues (#263, #265, #266, #267) - #293
Open
ghzhost wants to merge 1 commit into
Open
Conversation
MergeFi#267 - Issue MergeFi#263: Display 'Payout pending' button state for merged bounties in IssueActions - Issue MergeFi#265: Provide Suspense fallback for auth callback page to prevent blank flash - Issue MergeFi#266: Harden dangerouslyAllowSVG in next.config.ts with CSP and attachment disposition - Issue MergeFi#267: Distinguish missing token troubleshooting hint from backend connectivity error
|
Someone is attempting to deploy a commit to the chonilius' projects Team on Vercel. A member of the Team first needs to authorize it. |
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.
Summary of Changes
This PR resolves 4 open quality, UX and security issues:
IssueActions:mergedstatus now displays"Payout pending"rather than falling back to"No action available", aligning with maintainer pipeline semantics."Finishing sign-in…") onAuthCallbackPageto eliminate the blank window during client suspense resolution.contentSecurityPolicy: "default-src 'self'; script-src 'none'; sandbox;"andcontentDispositionType: "attachment"alongsidedangerouslyAllowSVGinnext.config.tsper Next.js security recommendations.CallbackClient:/connectrather than asserting the backend is offline.Verification
npm run build) succeeds cleanly with Next.js Turbopack and TypeScript type-checking.Closes #263, Closes #265, Closes #266, Closes #267