Redesign EZWallet main and claim pages with polished black-and-silver UX - #142
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 83a8cf8b3a
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| async function copyIntent() { | ||
| await navigator.clipboard.writeText(raw); | ||
| copyStatus = 'Link details copied.'; |
There was a problem hiding this comment.
Copy the full claim URL instead of only payload
The new “Copy claim link” action writes only the raw p payload to the clipboard, not the actual /labs/ezwallet/drop?p=... URL. In this flow, users who click this button and share what they copied will send an undecodable fragment instead of a working claim link, which breaks the share/reopen use case that the button label promises.
Useful? React with 👍 / 👎.
Motivation
Description
src/experiments/ezwallet/EZWalletApp.svelteinto four clear panels (1: Claim setup, 2: Share & preview, 3: Batch generator, 4: Upgrade options) with updated markup and a black-and-silver card visual system.src/experiments/ezwallet/EZWalletDropApp.sveltewith a focused claim card, structured details (dlgrid), improved error/empty states, clearer safety messaging, and new actions (Connect wallet,Copy claim link).copyIntentaction andprettyModeformatter on the drop page, and keptmakeOne,bulk,downloadCsv, andcheckoutSelectedTierbehavior intact on the main page.background-clipalongside-webkit-background-clip.Testing
pnpm -s check, which surfaced pre-existing repo-wide Svelte/TypeScript errors and warnings and reported failure (21 errors, 13 warnings); the failures are in unrelated parts of the repo.Codex Task