Skip to content

Conversation

@0xFirekeeper
Copy link
Member

@0xFirekeeper 0xFirekeeper commented Oct 9, 2025

Extracted project wallet setup logic into a new ProjectWalletSetup component, replacing the previous inline implementation in ProjectFTUX. Updated ProjectWalletControls to use a Select dropdown for wallet selection instead of a radio group. Improved user feedback messages and streamlined wallet selection and creation flows.

Closes BLD-388


PR-Codex overview

This PR primarily focuses on updating the project wallet functionality in the dashboard, enhancing user feedback messages, and refactoring components related to wallet management.

Detailed summary

  • Changed comment from "default project wallet address" to "project wallet address".
  • Updated success toast message from "Wallet set as default project wallet" to "Wallet set as project wallet".
  • Replaced Alert component in ProjectWalletSection with ProjectWalletSetup.
  • Introduced ProjectWalletSetup component for better wallet management.
  • Replaced RadioGroup with a Select component for wallet selection.
  • Modified success toast message in ProjectWalletControls from "Default project wallet updated" to "Project wallet updated".
  • Added loading state and improved user interface in ProjectWalletSetup for selecting existing wallets.

✨ Ask PR-Codex anything about this PR by commenting with /codex {your question}

Summary by CodeRabbit

  • New Features
    • Introduced a dedicated Project Wallet Setup flow to select or create a project wallet when none is set.
  • Refactor
    • Streamlined wallet selection in controls and modal: replaced radio options with a dropdown for easier selection.
    • Clearer indication of the current wallet within the selection UI.
    • Updated success toasts to “Project wallet updated” and “Wallet set as project wallet” for consistency.
    • Minor copy adjustments to use “project wallet” terminology consistently.

Extracted project wallet setup logic into a new ProjectWalletSetup component, replacing the previous inline implementation in ProjectFTUX. Updated ProjectWalletControls to use a Select dropdown for wallet selection instead of a radio group. Improved user feedback messages and streamlined wallet selection and creation flows.

Closes BLD-388
@0xFirekeeper 0xFirekeeper requested review from a team as code owners October 9, 2025 13:05
@linear
Copy link

linear bot commented Oct 9, 2025

@changeset-bot
Copy link

changeset-bot bot commented Oct 9, 2025

⚠️ No Changeset found

Latest commit: fb5d9bd

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@vercel
Copy link

vercel bot commented Oct 9, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Preview Comments Updated (UTC)
thirdweb-www Ready Ready Preview Comment Oct 9, 2025 1:12pm
4 Skipped Deployments
Project Deployment Preview Comments Updated (UTC)
docs-v2 Skipped Skipped Oct 9, 2025 1:12pm
nebula Skipped Skipped Oct 9, 2025 1:12pm
thirdweb_playground Skipped Skipped Oct 9, 2025 1:12pm
wallet-ui Skipped Skipped Oct 9, 2025 1:12pm

@graphite-app
Copy link
Contributor

graphite-app bot commented Oct 9, 2025

How to use the Graphite Merge Queue

Add either label to this PR to merge it via the merge queue:

  • merge-queue - adds this PR to the back of the merge queue
  • hotfix - for urgent hot fixes, skip the queue and merge this PR next

You must have a Graphite account in order to use the merge queue. Sign up using this link.

An organization admin has enabled the Graphite Merge Queue in this repository.

Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue.

@github-actions github-actions bot added the Dashboard Involves changes to the Dashboard. label Oct 9, 2025
@coderabbitai
Copy link
Contributor

coderabbitai bot commented Oct 9, 2025

Walkthrough

Replaced the inline wallet-setup UI in ProjectFTUX with a new ProjectWalletSetup component. Updated wallet selection controls from radio buttons to a Select dropdown. Introduced a client component to fetch existing server wallets, allow selecting/creating, and set the project wallet. Minor copy changes in wallet table toasts/comments.

Changes

Cohort / File(s) Summary
FTUX integration
apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/components/ProjectFTUX/ProjectFTUX.tsx
Replaced inline “no default wallet” Alert flow with ProjectWalletSetup; removed CreateServerWallet usage from here; imports updated; public interfaces unchanged.
Wallet selection UI refactor
.../ProjectFTUX/ProjectWalletControls.client.tsx
Switched wallet selection from RadioGroup/Label to Select components in main controls and modal; adjusted current-wallet indication logic; updated success toast text; removed Radio/Label dependencies.
New wallet setup component
.../ProjectFTUX/ProjectWalletSetup.client.tsx
Added client component to fetch server wallets, allow select existing or create new, and set as project wallet; handles loading, success/error toasts, query invalidation, and router refresh; gated by managementAccessToken.
Wallet table copy tweak
.../transactions/server-wallets/wallet-table/wallet-table-ui.client.tsx
Updated comment and success toast text from “default project wallet” to “project wallet”; no behavior changes.

Sequence Diagram(s)

sequenceDiagram
  autonumber
  actor User
  participant FTUX as ProjectFTUX
  participant Setup as ProjectWalletSetup
  participant API as Server Wallets API
  participant Cache as Query Cache
  participant Router as Dashboard Router
  participant Toast as Toast

  User->>FTUX: Open Project
  FTUX->>Setup: Render (project, teamSlug, token)
  Setup->>API: Fetch server wallets (token)
  API-->>Setup: Wallet list / none
  alt Has wallets
    User->>Setup: Select wallet (Select dropdown)
    User->>Setup: Set as project wallet
  else No wallets
    User->>Setup: Create wallet
    Setup->>API: Create wallet
    API-->>Setup: Wallet created
  end
  Setup->>API: Set project wallet
  API-->>Setup: Success/Failure
  alt Success
    Setup->>Cache: Invalidate server-wallets query
    Setup->>Router: Refresh
    Setup->>Toast: Show "Project wallet updated"
  else Failure
    Setup->>Toast: Show error
  end
Loading
sequenceDiagram
  autonumber
  actor User
  participant Controls as ProjectWalletControls
  participant API as Server Wallets API
  participant Toast as Toast

  User->>Controls: Open "Change project wallet"
  Controls->>Controls: Show Select with wallets
  User->>Controls: Choose wallet
  Controls->>API: Set project wallet
  API-->>Controls: Success
  Controls->>Toast: "Project wallet updated"
Loading

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~25 minutes

Pre-merge checks and finishing touches

❌ Failed checks (2 warnings)
Check name Status Explanation Resolution
Description Check ⚠️ Warning The pull request description omits the required template sections such as “Notes for the reviewer” and “How to test” and does not follow the repository’s prescribed structure, making it incomplete against the description template. Please restructure the description to include the specified template headings including “Notes for the reviewer” and “How to test”, and ensure it follows the repository’s PR description format.
Docstring Coverage ⚠️ Warning Docstring coverage is 0.00% which is insufficient. The required threshold is 80.00%. You can run @coderabbitai generate docstrings to improve docstring coverage.
✅ Passed checks (3 passed)
Check name Status Explanation
Title Check ✅ Passed The title succinctly captures the core change by indicating the refactoring of project wallet setup and controls UI, which aligns directly with the extraction of the new component and updated selection controls.
Linked Issues Check ✅ Passed The changes introduce a new ProjectWalletSetup component for selecting existing or creating new wallets, update the wallet controls UI in both overview and modal contexts, and adjust feedback messaging, fully addressing the objectives of BLD-388.
Out of Scope Changes Check ✅ Passed All modifications including component refactoring, selection control updates, and user feedback improvements directly relate to the linked issue objectives, and no unrelated changes are present.
✨ Finishing touches
  • 📝 Generate docstrings
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch firekeeper/project-wallet-ux

Comment @coderabbitai help to get the list of available commands and usage tips.

@codecov
Copy link

codecov bot commented Oct 9, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 55.02%. Comparing base (781a626) to head (fb5d9bd).
⚠️ Report is 1 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #8220   +/-   ##
=======================================
  Coverage   55.02%   55.02%           
=======================================
  Files         919      919           
  Lines       60583    60583           
  Branches     4126     4126           
=======================================
  Hits        33333    33333           
  Misses      27146    27146           
  Partials      104      104           
Flag Coverage Δ
packages 55.02% <ø> (ø)
🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@github-actions
Copy link
Contributor

github-actions bot commented Oct 9, 2025

size-limit report 📦

Path Size Loading time (3g) Running time (snapdragon) Total time
thirdweb (esm) 64.51 KB (0%) 1.3 s (0%) 159 ms (+226.32% 🔺) 1.5 s
thirdweb (cjs) 365.79 KB (0%) 7.4 s (0%) 587 ms (+21.68% 🔺) 8 s
thirdweb (minimal + tree-shaking) 5.73 KB (0%) 115 ms (0%) 83 ms (+3720.81% 🔺) 197 ms
thirdweb/chains (tree-shaking) 526 B (0%) 11 ms (0%) 69 ms (+6382.92% 🔺) 79 ms
thirdweb/react (minimal + tree-shaking) 19.13 KB (0%) 383 ms (0%) 74 ms (+2411.45% 🔺) 456 ms

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

♻️ Duplicate comments (2)
apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/components/ProjectFTUX/ProjectWalletSetup.client.tsx (2)

136-172: Reuse note: SelectValue custom children

Same caveat as in ProjectWalletControls: verify your Select supports children in SelectValue; otherwise switch to a supported pattern and set value={effectiveSelectedWalletId ?? undefined}.


31-53: Confirm client-side token usage

Double-check that exposing managementAccessToken client-side is acceptable. If sensitive, route calls through a server action/API and keep the token server-only.

As per coding guidelines

🧹 Nitpick comments (5)
apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/transactions/server-wallets/wallet-table/wallet-table-ui.client.tsx (2)

159-167: Balance refresh likely not invalidating the right query key

useWalletBalance is an external hook; its internal queryKey may not be ["walletBalance", selectedChainId]. Your invalidateQueries may no-op. Prefer a predicate or call refetch on each cell.

Suggested change:

- await queryClient.invalidateQueries({
-   queryKey: ["walletBalance", selectedChainId],
- });
+ await queryClient.invalidateQueries({
+   predicate: (q) =>
+     Array.isArray(q.queryKey) &&
+     q.queryKey.includes(selectedChainId) &&
+     (q.queryKey.includes("walletBalance") || q.queryKey.includes("balance")),
+ });

Or wire a refresh callback into WalletBalanceCell and call balance.refetch() for each visible row.


318-321: Unify copy: "default" vs "project wallet"

Toast says “Wallet set as project wallet” but UI shows “Set as default” and badge “default”. Align to avoid confusion.

Proposed diffs:

-            <Badge variant="success" className="text-xs">
-              default
-            </Badge>
+            <Badge variant="success" className="text-xs">
+              current
+            </Badge>
-            Set as default
+            Set as project wallet

Also applies to: 468-470, 425-426

apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/components/ProjectFTUX/ProjectFTUX.tsx (1)

110-114: Good extraction; confirm token exposure is intended

Passing managementAccessToken into a client component exposes it to the browser. If this token grants privileged actions, proxy via a server action/API instead and keep the token server-side.

Also consider updating the section copy (Lines 86-88) to drop “Default” for consistency with “Project wallet”.

As per coding guidelines

apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/components/ProjectFTUX/ProjectWalletControls.client.tsx (2)

355-415: Check SelectValue usage; children may not render

Many Select implementations (e.g., shadcn/radix-based) ignore children inside SelectValue and only render the current option’s text. If your Select doesn’t support custom children here, the selected content may appear blank.

If unsupported:

  • Keep without children and render the selected summary next to the trigger, or
  • Switch to a Combobox/Command pattern that supports fully custom selected/rendered content.

Also prefer value={selectedWalletId ?? undefined} to allow the placeholder to show when no selection.

Diff:

- <SelectValue placeholder="Select server wallet">
-   {selectedWallet ? (/* custom JSX */) : "Select server wallet"}
- </SelectValue>
+ <SelectValue placeholder="Select server wallet" />
- value={selectedWalletId ?? ""}
+ value={selectedWalletId ?? undefined}

220-222: Align copy

“Change default” → “Change project wallet” for consistency.

- Change default
+ Change project wallet
📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

Disabled knowledge base sources:

  • Linear integration is disabled by default for public repositories

You can enable these sources in your CodeRabbit configuration.

📥 Commits

Reviewing files that changed from the base of the PR and between 781a626 and fb5d9bd.

📒 Files selected for processing (4)
  • apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/components/ProjectFTUX/ProjectFTUX.tsx (2 hunks)
  • apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/components/ProjectFTUX/ProjectWalletControls.client.tsx (3 hunks)
  • apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/components/ProjectFTUX/ProjectWalletSetup.client.tsx (1 hunks)
  • apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/transactions/server-wallets/wallet-table/wallet-table-ui.client.tsx (2 hunks)
🧰 Additional context used
📓 Path-based instructions (5)
**/*.{ts,tsx}

📄 CodeRabbit inference engine (CLAUDE.md)

**/*.{ts,tsx}: Write idiomatic TypeScript with explicit function declarations and return types
Limit each file to one stateless, single-responsibility function for clarity
Re-use shared types from @/types or local types.ts barrels
Prefer type aliases over interface except for nominal shapes
Avoid any and unknown unless unavoidable; narrow generics when possible
Choose composition over inheritance; leverage utility types (Partial, Pick, etc.)
Comment only ambiguous logic; avoid restating TypeScript in prose

**/*.{ts,tsx}: Use explicit function declarations and explicit return types in TypeScript
Limit each file to one stateless, single‑responsibility function
Re‑use shared types from @/types where applicable
Prefer type aliases over interface except for nominal shapes
Avoid any and unknown unless unavoidable; narrow generics when possible
Prefer composition over inheritance; use utility types (Partial, Pick, etc.)
Lazy‑import optional features and avoid top‑level side‑effects to reduce bundle size

Files:

  • apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/transactions/server-wallets/wallet-table/wallet-table-ui.client.tsx
  • apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/components/ProjectFTUX/ProjectWalletControls.client.tsx
  • apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/components/ProjectFTUX/ProjectWalletSetup.client.tsx
  • apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/components/ProjectFTUX/ProjectFTUX.tsx
**/*.{ts,tsx,js,jsx}

📄 CodeRabbit inference engine (CLAUDE.md)

Load heavy dependencies inside async paths to keep initial bundle lean (lazy loading)

Files:

  • apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/transactions/server-wallets/wallet-table/wallet-table-ui.client.tsx
  • apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/components/ProjectFTUX/ProjectWalletControls.client.tsx
  • apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/components/ProjectFTUX/ProjectWalletSetup.client.tsx
  • apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/components/ProjectFTUX/ProjectFTUX.tsx
apps/{dashboard,playground-web}/**/*.{ts,tsx}

📄 CodeRabbit inference engine (CLAUDE.md)

apps/{dashboard,playground-web}/**/*.{ts,tsx}: Import UI primitives from @/components/ui/* (Button, Input, Select, Tabs, Card, Sidebar, Badge, Separator) in dashboard and playground apps
Use NavLink for internal navigation with automatic active states in dashboard and playground apps
Use Tailwind CSS only – no inline styles or CSS modules
Use cn() from @/lib/utils for conditional class logic
Use design system tokens (e.g., bg-card, border-border, text-muted-foreground)
Server Components (Node edge): Start files with import "server-only";
Client Components (browser): Begin files with 'use client';
Always call getAuthToken() to retrieve JWT from cookies on server side
Use Authorization: Bearer header – never embed tokens in URLs
Return typed results (e.g., Project[], User[]) – avoid any
Wrap client-side data fetching calls in React Query (@tanstack/react-query)
Use descriptive, stable queryKeys for React Query cache hits
Configure staleTime/cacheTime in React Query based on freshness (default ≥ 60s)
Keep tokens secret via internal API routes or server actions
Never import posthog-js in server components

Files:

  • apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/transactions/server-wallets/wallet-table/wallet-table-ui.client.tsx
  • apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/components/ProjectFTUX/ProjectWalletControls.client.tsx
  • apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/components/ProjectFTUX/ProjectWalletSetup.client.tsx
  • apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/components/ProjectFTUX/ProjectFTUX.tsx
apps/{dashboard,playground}/**/*.{ts,tsx}

📄 CodeRabbit inference engine (AGENTS.md)

apps/{dashboard,playground}/**/*.{ts,tsx}: Import UI primitives from @/components/ui/_ (e.g., Button, Input, Tabs, Card)
Use NavLink for internal navigation to get active state handling
Use Tailwind CSS for styling; no inline styles
Merge class names with cn() from @/lib/utils for conditional classes
Stick to design tokens (e.g., bg-card, border-border, text-muted-foreground)
Server Components must start with import "server-only"; use next/headers, server‑only env, heavy data fetching, and redirect() where appropriate
Client Components must start with 'use client'; handle interactivity with hooks and browser APIs
Server-side data fetching: call getAuthToken() from cookies, send Authorization: Bearer <token> header, and return typed results (avoid any)
Client-side data fetching: wrap calls in React Query with descriptive, stable queryKeys and set sensible staleTime/cacheTime (≥ 60s default); keep tokens secret via internal routes or server actions
Do not import posthog-js in server components (client-side only)

Files:

  • apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/transactions/server-wallets/wallet-table/wallet-table-ui.client.tsx
  • apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/components/ProjectFTUX/ProjectWalletControls.client.tsx
  • apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/components/ProjectFTUX/ProjectWalletSetup.client.tsx
  • apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/components/ProjectFTUX/ProjectFTUX.tsx
apps/{dashboard,playground}/**/*.tsx

📄 CodeRabbit inference engine (AGENTS.md)

Expose a className prop on the root element of every component

Files:

  • apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/transactions/server-wallets/wallet-table/wallet-table-ui.client.tsx
  • apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/components/ProjectFTUX/ProjectWalletControls.client.tsx
  • apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/components/ProjectFTUX/ProjectWalletSetup.client.tsx
  • apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/components/ProjectFTUX/ProjectFTUX.tsx
🧠 Learnings (2)
📚 Learning: 2025-07-18T19:19:55.613Z
Learnt from: CR
PR: thirdweb-dev/js#0
File: CLAUDE.md:0-0
Timestamp: 2025-07-18T19:19:55.613Z
Learning: Applies to apps/{dashboard,playground-web}/**/*.{ts,tsx} : Import UI primitives from `@/components/ui/*` (Button, Input, Select, Tabs, Card, Sidebar, Badge, Separator) in dashboard and playground apps

Applied to files:

  • apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/components/ProjectFTUX/ProjectWalletControls.client.tsx
📚 Learning: 2025-07-18T19:20:32.530Z
Learnt from: CR
PR: thirdweb-dev/js#0
File: .cursor/rules/dashboard.mdc:0-0
Timestamp: 2025-07-18T19:20:32.530Z
Learning: Applies to dashboard/**/*client.tsx : Interactive UI that relies on hooks (`useState`, `useEffect`, React Query, wallet hooks).

Applied to files:

  • apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/components/ProjectFTUX/ProjectWalletSetup.client.tsx
🧬 Code graph analysis (3)
apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/components/ProjectFTUX/ProjectWalletControls.client.tsx (1)
apps/playground-web/src/components/ui/select.tsx (5)
  • Select (152-152)
  • SelectTrigger (155-155)
  • SelectValue (154-154)
  • SelectContent (156-156)
  • SelectItem (158-158)
apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/components/ProjectFTUX/ProjectWalletSetup.client.tsx (4)
apps/dashboard/src/@/lib/server/project-wallet.ts (1)
  • ProjectWalletSummary (8-12)
apps/dashboard/src/@/actions/project-wallet/list-server-wallets.ts (1)
  • listProjectServerWallets (18-70)
apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/transactions/lib/vault.client.ts (1)
  • updateDefaultProjectWallet (190-216)
apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/transactions/server-wallets/components/create-server-wallet.client.tsx (1)
  • CreateServerWallet (20-135)
apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/components/ProjectFTUX/ProjectFTUX.tsx (1)
apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/components/ProjectFTUX/ProjectWalletSetup.client.tsx (1)
  • ProjectWalletSetup (26-215)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (4)
  • GitHub Check: E2E Tests (pnpm, vite)
  • GitHub Check: Size
  • GitHub Check: Lint Packages
  • GitHub Check: Analyze (javascript)
🔇 Additional comments (2)
apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/components/ProjectFTUX/ProjectWalletControls.client.tsx (1)

171-173: Toast message update LGTM

Clearer phrasing; aligns with the broader wording change.

apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/components/ProjectFTUX/ProjectWalletSetup.client.tsx (1)

78-107: Mutation flow LGTM

Good UX: errors surfaced, success toast, query invalidation, and router refresh for updated project state.

@0xFirekeeper 0xFirekeeper merged commit ae75073 into main Oct 9, 2025
24 checks passed
@0xFirekeeper 0xFirekeeper deleted the firekeeper/project-wallet-ux branch October 9, 2025 15:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Dashboard Involves changes to the Dashboard.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants