Skip to content

Conversation

@MananTank
Copy link
Member

@MananTank MananTank commented Aug 27, 2025


PR-Codex overview

This PR focuses on improving state management for the contractAddress in the LaunchTokenStatus component by using a ref to avoid stale closures in the executeSteps function.

Detailed summary

  • Added useCallback and useRef imports.
  • Introduced contractAddressRef to hold the current value of contractAddress.
  • Modified setContractAddress to update both state and ref.
  • Updated conditional check from contractAddress to contractAddressRef.current.

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

Summary by CodeRabbit

  • Bug Fixes
    • Improved reliability of the token launch flow so the final confirmation consistently uses the latest deployed contract address.
    • Prevents rare cases where an outdated address could be shown or used after deployment, reducing intermittent post-launch errors.
    • Fix applies to ERC20 and Drop ERC20 deployments; no visible UI changes, just more consistent launches and confirmations.

@vercel
Copy link

vercel bot commented Aug 27, 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 Aug 27, 2025 7:03pm
4 Skipped Deployments
Project Deployment Preview Comments Updated (UTC)
docs-v2 Skipped Skipped Aug 27, 2025 7:03pm
nebula Skipped Skipped Aug 27, 2025 7:03pm
thirdweb_playground Skipped Skipped Aug 27, 2025 7:03pm
wallet-ui Skipped Skipped Aug 27, 2025 7:03pm

@vercel vercel bot temporarily deployed to Preview – nebula August 27, 2025 18:31 Inactive
@vercel vercel bot temporarily deployed to Preview – wallet-ui August 27, 2025 18:31 Inactive
@vercel vercel bot temporarily deployed to Preview – docs-v2 August 27, 2025 18:31 Inactive
@vercel vercel bot temporarily deployed to Preview – thirdweb_playground August 27, 2025 18:31 Inactive
@changeset-bot
Copy link

changeset-bot bot commented Aug 27, 2025

⚠️ No Changeset found

Latest commit: 3a289e8

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

@MananTank MananTank marked this pull request as ready for review August 27, 2025 18:31
@MananTank MananTank requested review from a team as code owners August 27, 2025 18:31
@github-actions github-actions bot added the Dashboard Involves changes to the Dashboard. label Aug 27, 2025
Copy link
Member Author


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.

This stack of pull requests is managed by Graphite. Learn more about stacking.

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Aug 27, 2025

Walkthrough

Replaces direct contractAddress state updates with a ref-backed pattern: introduces contractAddressRef and a useCallback setter that updates both state and ref, and uses the ref in the launch-success path to avoid stale closures; UI rendering still reads the state.

Changes

Cohort / File(s) Summary of Changes
Launch flow state/ref synchronization
apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/tokens/create/token/launch/launch-token.tsx
Added useRef for the contract address, introduced a memoized setContractAddress via useCallback that updates both state and contractAddressRef.current, switched the launch-success handler to read contractAddressRef.current to avoid stale closures; deployment steps continue calling the unified setter.

Sequence Diagram(s)

sequenceDiagram
  autonumber
  actor User
  participant UI as LaunchToken UI
  participant Steps as executeSteps
  participant Deploy as Contract Deployer

  User->>UI: Initiate Launch
  UI->>Steps: start()
  Steps->>Deploy: deploy ERC20/DropERC20
  Deploy-->>Steps: deployed(address)
  Steps->>UI: setContractAddress(address)
  note right of UI #D3E4CD: Memoized setter updates state and ref
  UI->>UI: _setContractAddress(address)
  UI->>UI: contractAddressRef.current = address
  Steps-->>UI: onLaunchSuccess()
  UI->>UI: use contractAddressRef.current for payload
  note over UI: Rendering (contract link) continues to read state
Loading

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~20 minutes

Warning

Review ran into problems

🔥 Problems

Errors were encountered while retrieving linked issues.

Errors (1)
  • TEAM-0000: Entity not found: Issue - Could not find referenced Issue.

📜 Recent review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

💡 Knowledge Base configuration:

  • MCP integration is disabled by default for public repositories
  • Jira integration is disabled by default for public repositories
  • 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 3226685 and 3a289e8.

📒 Files selected for processing (1)
  • apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/tokens/create/token/launch/launch-token.tsx (3 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/tokens/create/token/launch/launch-token.tsx
⏰ 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). (2)
  • GitHub Check: Size
  • GitHub Check: Analyze (javascript)
✨ Finishing Touches
  • 📝 Generate Docstrings
🧪 Generate unit tests
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch 08-28-dashboard_fix_token_not_added_to_ub_on_launch_success

🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

CodeRabbit Commands (Invoked using PR/Issue comments)

Type @coderabbitai help to get the list of available commands.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Status, Documentation and Community

  • Visit our Status Page to check the current availability of CodeRabbit.
  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@codecov
Copy link

codecov bot commented Aug 27, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 56.53%. Comparing base (e9efeba) to head (3a289e8).
⚠️ Report is 1 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #7931   +/-   ##
=======================================
  Coverage   56.53%   56.53%           
=======================================
  Files         904      904           
  Lines       58592    58592           
  Branches     4143     4143           
=======================================
  Hits        33126    33126           
  Misses      25360    25360           
  Partials      106      106           
Flag Coverage Δ
packages 56.53% <ø> (ø)
🚀 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.

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

🧹 Nitpick comments (1)
apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/tokens/create/token/launch/launch-token.tsx (1)

71-81: Solid stale-closure fix; add a clear helper to reset between runs.

Syncing state+ref via a memoized setter correctly avoids stale captures inside executeSteps. To prevent accidental reuse of a previous address across sessions (e.g., cancel → relaunch), add a tiny clear helper.

Apply within this block:

   const [contractAddress, _setContractAddress] = useState<string | null>(null);

   // needed to add a ref to avoid `executeSteps` using the stale value of state `contractAddress` because of closure
   const contractAddressRef = useRef<string | null>(null);

   const setContractAddress = useCallback((address: string) => {
     _setContractAddress(address);
     contractAddressRef.current = address;
   }, []);
+
+  const clearContractAddress = useCallback(() => {
+    _setContractAddress(null);
+    contractAddressRef.current = null;
+  }, []);

Then, on modal close and at the start of a new launch, call clearContractAddress():

// on modal close handler (current block around lines 454-463)
onClick={() => {
  setIsModalOpen(false);
  setSteps([]);
  clearContractAddress();
}}

// at the top of handleSubmitClick(), before setting initial steps
clearContractAddress();
📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

💡 Knowledge Base configuration:

  • MCP integration is disabled by default for public repositories
  • Jira integration is disabled by default for public repositories
  • 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 e651d0a and a4d817f.

📒 Files selected for processing (1)
  • apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/tokens/create/token/launch/launch-token.tsx (3 hunks)
🧰 Additional context used
📓 Path-based instructions (3)
**/*.{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

Files:

  • apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/tokens/create/token/launch/launch-token.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)/tokens/create/token/launch/launch-token.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)/tokens/create/token/launch/launch-token.tsx
🧠 Learnings (4)
📚 Learning: 2025-06-10T00:50:20.795Z
Learnt from: MananTank
PR: thirdweb-dev/js#7315
File: apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/assets/create/nft/launch-nft.tsx:153-226
Timestamp: 2025-06-10T00:50:20.795Z
Learning: In apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/assets/create/nft/launch-nft.tsx, the updateStatus function correctly expects a complete MultiStepState["status"] object. For pending states, { type: "pending" } is the entire status object. For error states, { type: "error", message: React.ReactNode } is the entire status object. The current code incorrectly spreads the entire step object instead of passing just the status object.

Applied to files:

  • apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/tokens/create/token/launch/launch-token.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)/tokens/create/token/launch/launch-token.tsx
📚 Learning: 2025-07-07T21:21:47.488Z
Learnt from: saminacodes
PR: thirdweb-dev/js#7543
File: apps/portal/src/app/pay/page.mdx:4-4
Timestamp: 2025-07-07T21:21:47.488Z
Learning: In the thirdweb-dev/js repository, lucide-react icons must be imported with the "Icon" suffix (e.g., ExternalLinkIcon, RocketIcon) as required by the new linting rule, contrary to the typical lucide-react convention of importing without the suffix.

Applied to files:

  • apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/tokens/create/token/launch/launch-token.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 : Anything that consumes hooks from `tanstack/react-query` or thirdweb SDKs.

Applied to files:

  • apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/tokens/create/token/launch/launch-token.tsx
⏰ 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). (3)
  • 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)/tokens/create/token/launch/launch-token.tsx (2)

8-8: Hook imports look good.

useCallback, useRef, and useState are all used below; import change is correct for a client component.


253-257: Correctly read latest address via ref in onLaunchSuccess.

Using contractAddressRef.current guarantees the freshest value after the async step pipeline and aligns with the PR goal to ensure the token is added on launch success.

@github-actions
Copy link
Contributor

github-actions bot commented Aug 27, 2025

size-limit report 📦

Path Size Loading time (3g) Running time (snapdragon) Total time
thirdweb (esm) 64.06 KB (0%) 1.3 s (0%) 402 ms (+139.52% 🔺) 1.7 s
thirdweb (cjs) 357.05 KB (0%) 7.2 s (0%) 1.4 s (+15.86% 🔺) 8.6 s
thirdweb (minimal + tree-shaking) 5.73 KB (0%) 115 ms (0%) 97 ms (+870.8% 🔺) 211 ms
thirdweb/chains (tree-shaking) 526 B (0%) 11 ms (0%) 71 ms (+1832.73% 🔺) 82 ms
thirdweb/react (minimal + tree-shaking) 19.15 KB (0%) 383 ms (0%) 70 ms (+196.66% 🔺) 453 ms

@graphite-app
Copy link
Contributor

graphite-app bot commented Aug 27, 2025

Merge activity

graphite-app bot pushed a commit that referenced this pull request Aug 27, 2025
<!--

## title your PR with this format: "[SDK/Dashboard/Portal] Feature/Fix: Concise title for the changes"

If you did not copy the branch name from Linear, paste the issue tag here (format is TEAM-0000):

## Notes for the reviewer

Anything important to call out? Be sure to also clarify these in your comments.

## How to test

Unit tests, playground, etc.

-->

<!-- start pr-codex -->

---

## PR-Codex overview
This PR focuses on improving the handling of the `contractAddress` state in the `LaunchTokenStatus` component by using a ref to prevent stale closures during function execution.

### Detailed summary
- Added `useCallback` and `useRef` to manage `contractAddress`.
- Renamed the state setter for `contractAddress` to `_setContractAddress`.
- Created a new `setContractAddress` function to update both state and ref.
- Changed the condition to check `contractAddressRef.current` instead of `contractAddress`.

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

<!-- end pr-codex -->

<!-- This is an auto-generated comment: release notes by coderabbit.ai -->

## Summary by CodeRabbit

- Bug Fixes
  - Improved reliability of the token launch flow by always using the latest deployed contract address during finalization.
  - Prevents rare cases where an outdated address could be referenced after deployment, reducing intermittent errors in success callbacks and post-launch actions.
  - Applies to ERC20 and Drop ERC20 deployments.
  - No changes to UI or public behavior; users should experience more consistent launches and accurate confirmations.

<!-- end of auto-generated comment: release notes by coderabbit.ai -->
@graphite-app graphite-app bot force-pushed the 08-28-dashboard_fix_token_not_added_to_ub_on_launch_success branch from a4d817f to 7538e8f Compare August 27, 2025 18:40
@vercel vercel bot temporarily deployed to Preview – wallet-ui August 27, 2025 18:40 Inactive
@vercel vercel bot temporarily deployed to Preview – docs-v2 August 27, 2025 18:40 Inactive
@vercel vercel bot temporarily deployed to Preview – nebula August 27, 2025 18:40 Inactive
@vercel vercel bot temporarily deployed to Preview – thirdweb_playground August 27, 2025 18:40 Inactive
graphite-app bot pushed a commit that referenced this pull request Aug 27, 2025
<!--

## title your PR with this format: "[SDK/Dashboard/Portal] Feature/Fix: Concise title for the changes"

If you did not copy the branch name from Linear, paste the issue tag here (format is TEAM-0000):

## Notes for the reviewer

Anything important to call out? Be sure to also clarify these in your comments.

## How to test

Unit tests, playground, etc.

-->

<!-- start pr-codex -->

---

## PR-Codex overview
This PR focuses on improving the handling of the `contractAddress` state in the `LaunchTokenStatus` component to prevent stale state issues during asynchronous operations.

### Detailed summary
- Added `useCallback` and `useRef` hooks to manage `contractAddress`.
- Renamed the state setter for `contractAddress` to `_setContractAddress`.
- Introduced `contractAddressRef` to store the current value of `contractAddress`.
- Updated logic to use `contractAddressRef.current` instead of `contractAddress` for launching success.

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

<!-- end pr-codex -->

<!-- This is an auto-generated comment: release notes by coderabbit.ai -->
## Summary by CodeRabbit

- Bug Fixes
  - Improved reliability of the token launch flow by ensuring the final confirmation always uses the latest deployed contract address.
  - Prevents rare cases where an outdated address could be shown or used after deployment, reducing intermittent post-launch errors.
  - Applies to ERC20 and Drop ERC20 deployments; no visible UI changes, just more consistent launches and confirmations.
<!-- end of auto-generated comment: release notes by coderabbit.ai -->
@graphite-app graphite-app bot force-pushed the 08-28-dashboard_fix_token_not_added_to_ub_on_launch_success branch from 7538e8f to 3226685 Compare August 27, 2025 18:46
@vercel vercel bot temporarily deployed to Preview – thirdweb_playground August 27, 2025 18:46 Inactive
@vercel vercel bot temporarily deployed to Preview – wallet-ui August 27, 2025 18:46 Inactive
@vercel vercel bot temporarily deployed to Preview – nebula August 27, 2025 18:46 Inactive
@vercel vercel bot temporarily deployed to Preview – docs-v2 August 27, 2025 18:46 Inactive
<!--

## title your PR with this format: "[SDK/Dashboard/Portal] Feature/Fix: Concise title for the changes"

If you did not copy the branch name from Linear, paste the issue tag here (format is TEAM-0000):

## Notes for the reviewer

Anything important to call out? Be sure to also clarify these in your comments.

## How to test

Unit tests, playground, etc.

-->

<!-- start pr-codex -->

---

## PR-Codex overview
This PR focuses on improving the handling of the `contractAddress` state in the `LaunchTokenStatus` component by using a `ref` to avoid stale closures and ensure the latest address is used during execution.

### Detailed summary
- Added `useCallback` and `useRef` imports.
- Replaced the state setter for `contractAddress` with a callback to update a `ref`.
- Updated the condition to check `contractAddressRef.current` instead of `contractAddress` when launching.

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

<!-- end pr-codex -->

<!-- This is an auto-generated comment: release notes by coderabbit.ai -->
## Summary by CodeRabbit

- Bug Fixes
  - Improved reliability of the token launch flow so the final confirmation consistently uses the latest deployed contract address.
  - Prevents rare cases where an outdated address could be shown or used after deployment, reducing intermittent post-launch errors.
  - Fix applies to ERC20 and Drop ERC20 deployments; no visible UI changes, just more consistent launches and confirmations.
<!-- end of auto-generated comment: release notes by coderabbit.ai -->
@graphite-app graphite-app bot force-pushed the 08-28-dashboard_fix_token_not_added_to_ub_on_launch_success branch from 3226685 to 3a289e8 Compare August 27, 2025 18:54
@vercel vercel bot temporarily deployed to Preview – thirdweb_playground August 27, 2025 18:54 Inactive
@vercel vercel bot temporarily deployed to Preview – wallet-ui August 27, 2025 18:54 Inactive
@vercel vercel bot temporarily deployed to Preview – docs-v2 August 27, 2025 18:54 Inactive
@vercel vercel bot temporarily deployed to Preview – nebula August 27, 2025 18:54 Inactive
@graphite-app graphite-app bot merged commit 3a289e8 into main Aug 27, 2025
25 checks passed
@graphite-app graphite-app bot deleted the 08-28-dashboard_fix_token_not_added_to_ub_on_launch_success branch August 27, 2025 19:05
@vercel vercel bot temporarily deployed to Production – docs-v2 August 27, 2025 19:05 Inactive
@vercel vercel bot temporarily deployed to Production – thirdweb_playground August 27, 2025 19:05 Inactive
@vercel vercel bot temporarily deployed to Production – nebula August 27, 2025 19:05 Inactive
@vercel vercel bot temporarily deployed to Production – wallet-ui August 27, 2025 19:05 Inactive
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.

4 participants