fix: SupportPanel form reset + Albedo wallet network compatibility#735
Merged
OlaGreat merged 2 commits intoJun 29, 2026
Merged
Conversation
|
@jayteemoney Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits. You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀 |
Lighthouse Report 🚀
Web Vitals
Ran 3 audit(s) on 2026-06-29 |
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
Fixes two frontend bugs in the support flow.
#708 — SupportPanel does not clear amount and message after a successful transaction
After a successful payment, the
amountandmessagefields stayed populated, making it easy to accidentally re-send the same support (especially on mobile).submittedAmount/submittedMessagebefore clearing the live inputs.TransactionResultModalnow reads those snapshots, so it still shows the correct amount and note while open — clearing the live fields immediately would otherwise blank out the modal (it renders the props live).#707 — Albedo wallet adapter passed the full network passphrase
albedo.tx()expects the shorthand"public"|"testnet", but the full passphrase (e.g."Test SDF Network ; September 2015") was being passed, so every Albedo sign attempt failed.Networks.PUBLICfrom@stellar/stellar-sdk.Testing
npx tsc --noEmit— no new type errors in the changed files.npx next linton both changed files — no warnings or errors.mainbefore this change).Notes
Closes #707
Closes #708