[RELEASE] fix(wallet): restore Tangle-branded connect-wallet design#3209
Merged
Conversation
Reverts the wallet UI redesign that landed in #3161 (April 25, 2026, "Redesign Tangle Cloud blueprint registration flow"). That PR was scoped to the cloud blueprint flow but swept in three shared wallet components that both tangle-cloud AND tangle-dapp depend on: - libs/tangle-shared-ui/.../EvmWalletModal/EvmWalletModal.tsx - libs/tangle-shared-ui/.../ConnectWalletButton/ConnectWalletButton.tsx - libs/tangle-shared-ui/.../ConnectWalletButton/WalletDropdown.tsx The redesign replaced our Tangle `Modal`/`Button`/`Dropdown` primitives from `@tangle-network/ui-components` with sandbox-ui's `Dialog`/`Button`/ `DropdownMenu` (shadcn-flavored). The sandbox-ui tokens (`bg-muted/30`, `border-border`, `text-foreground`, etc.) belong inside sandboxed iframe blueprint apps; pulling them into the dashboard chrome produced a modal that looks generic and inconsistent with the rest of the Tangle dashboard surface. This commit restores the pre-#3161 versions verbatim: - `Modal` / `ModalContent` / `ModalHeader` from ui-components - `Typography` for the wallet name - Tangle `mono-*` color scale on the wallet rows - Native Button + Tangle `Dropdown` / `DropdownBody` for the connected account dropdown Verified: - yarn typecheck ✓ - yarn lint ✓ - yarn build:tangle-cloud + yarn build:tangle-dapp ✓ - Playwright opens the modal locally; "Connect Wallet" header + "Connect your EVM wallet" description + wallet rows render with zero pageerrors. If we want a different look for tangle-cloud specifically later, the right move is per-app modal components — not redesigning the shared one to favour one app's design system.
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.
Reverts the wallet UI redesign from #3161 (Apr 25, 2026 — "Redesign Tangle Cloud blueprint registration flow"). #3161 was scoped to the cloud blueprint flow but swept in three shared wallet components in libs/tangle-shared-ui that both tangle-cloud AND tangle-dapp consume, swapping our Tangle Modal/Button/Dropdown primitives for sandbox-ui's Dialog/Button/DropdownMenu. The sandbox-ui tokens are tuned for the sandboxed iframe blueprint apps; using them in the dashboard chrome produced a generic-looking modal inconsistent with the rest of the Tangle surface. This restores the pre-#3161 versions verbatim. Verified: typecheck, lint, build (cloud + dapp), Playwright modal smoke (zero pageerrors). If tangle-cloud wants its own sandbox-flavored modal later, the right move is per-app components, not redesigning the shared one.