Skip to content

Conversation

@MananTank
Copy link
Member

@MananTank MananTank commented Oct 22, 2025


PR-Codex overview

This PR enhances the Page component in the apps/dashboard/src/app/bridge/page.tsx file by adding search parameter handling, improving the logic for processing token addresses and chain IDs, and updating the UI props for the BridgePageUI component.

Detailed summary

  • Introduced a SearchParams type for better type safety.
  • Updated the Page function to accept searchParams as a Promise.
  • Added utility functions onlyAddress and onlyNumber for validation.
  • Implemented a parse function for extracting and validating search parameters.
  • Modified the BridgePageUI props to include structured buyTab and swapTab data based on parsed parameters.

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

Summary by CodeRabbit

  • New Features
    • Bridge page now supports URL parameters to pre-configure swap settings, enabling users to share bridge configurations directly with specific chains and currencies pre-selected.

@vercel vercel bot temporarily deployed to Preview – nebula October 22, 2025 17:03 Inactive
@vercel vercel bot temporarily deployed to Preview – thirdweb_playground October 22, 2025 17:03 Inactive
@vercel
Copy link

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

@vercel vercel bot temporarily deployed to Preview – docs-v2 October 22, 2025 17:03 Inactive
@linear
Copy link

linear bot commented Oct 22, 2025

@changeset-bot
Copy link

changeset-bot bot commented Oct 22, 2025

⚠️ No Changeset found

Latest commit: c36cfbb

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 vercel bot temporarily deployed to Preview – wallet-ui October 22, 2025 17:03 Inactive
@MananTank MananTank marked this pull request as ready for review October 22, 2025 17:03
@MananTank MananTank requested review from a team as code owners October 22, 2025 17:03
Copy link
Member Author

MananTank commented Oct 22, 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.

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

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

coderabbitai bot commented Oct 22, 2025

Walkthrough

Page converted to an async React server component that resolves URL searchParams, validates/parses input/output chain and currency query parameters (address/number), constructs buyTab and swapTab token+chain configs (falling back to native token), and passes them to BridgePageUI.

Changes

Cohort / File(s) Summary
Bridge page query parameter support & signature change
apps/dashboard/src/app/bridge/page.tsx
Converted default export to async and accept props: { searchParams: Promise<SearchParams> }; added SearchParams type and internal parse helper to validate/coerce strings, addresses, and numbers; compute sellChain/sellCurrency and buyChain/buyCurrency from URL params; build buyTab and swapTab (tokens include chainId and tokenAddress with fallback to NATIVE_TOKEN_ADDRESS) and pass them into BridgePageUI.

Sequence Diagram(s)

sequenceDiagram
    actor User
    participant Browser
    participant Page as apps/dashboard/src/app/bridge/page.tsx
    participant UI as BridgePageUI

    User->>Browser: Navigate to /bridge?outputChain=1&outputCurrency=0x...
    Browser->>Page: Request (searchParams Promise)
    Note over Page: await searchParams\nparse input/output params\nvalidate address/number
    Page->>Page: compute sellChain/sellCurrency\ncompute buyChain/buyCurrency\napply NATIVE_TOKEN_ADDRESS fallback
    Page->>UI: render with buyTab & swapTab configs
    UI->>Browser: render configured bridge widget
    Browser->>User: display preset route
Loading

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~10 minutes

Pre-merge checks and finishing touches

❌ Failed checks (2 warnings)
Check name Status Explanation Resolution
Description Check ⚠️ Warning The pull request description retains the commented template skeleton and includes an AI-generated overview but fails to populate the required sections for the PR title, reviewer notes, and testing instructions, leaving critical context and guidance missing for reviewers. Please update the description by filling in the template’s “## title,” “## Notes for the reviewer,” and “## How to test” sections with concrete details on the change scope, key considerations for reviewers, and steps to verify the new query parameter behavior.
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 primary change by indicating that the bridge page will now accept query parameters to configure token selection and includes the issue identifier for traceability, making it clear to reviewers what functionality is being introduced.
Linked Issues Check ✅ Passed The code introduces parsing and validation of inputChain, inputCurrency, outputChain, and outputCurrency query parameters and updates the BridgePageUI props with structured buyTab and swapTab data, fully implementing the linked issue’s requirement to configure the bridge widget via URL parameters.
Out of Scope Changes Check ✅ Passed All modifications are confined to apps/dashboard/src/app/bridge/page.tsx and relate directly to parsing and handling query parameters for the bridge page, with no unrelated or extraneous code changes detected.
✨ 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 mny-257

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.

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

@codecov
Copy link

codecov bot commented Oct 22, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 54.90%. Comparing base (93a9ba9) to head (c36cfbb).
⚠️ Report is 1 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #8293   +/-   ##
=======================================
  Coverage   54.90%   54.90%           
=======================================
  Files         919      919           
  Lines       60665    60665           
  Branches     4129     4129           
=======================================
  Hits        33310    33310           
  Misses      27254    27254           
  Partials      101      101           
Flag Coverage Δ
packages 54.90% <ø> (ø)
🚀 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 (2)
apps/dashboard/src/app/bridge/page.tsx (2)

18-20: Consider using Next.js built-in type if available.

The SearchParams type definition matches Next.js conventions. If Next.js 15 exports a type for searchParams (e.g., from next/types), consider importing it to reduce duplication.


22-87: Add explicit return type and server-only import.

The component logic is correct, but two guideline requirements are missing:

  1. Missing explicit return type: According to coding guidelines, TypeScript functions should have explicit return types.
  2. Missing server-only import: Server components should start with import "server-only" per coding guidelines.

Apply this diff to add the return type:

-export default async function Page(props: {
+export default async function Page(props: {
   searchParams: Promise<SearchParams>;
-}) {
+}): Promise<JSX.Element> {

Add this import at the top of the file:

+import "server-only";
 import type { Metadata } from "next";
 import { isAddress, NATIVE_TOKEN_ADDRESS } from "thirdweb";

As per coding guidelines

📜 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 6a7b556 and a997834.

📒 Files selected for processing (1)
  • apps/dashboard/src/app/bridge/page.tsx (3 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/bridge/page.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/bridge/page.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/bridge/page.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/bridge/page.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/bridge/page.tsx
🧬 Code graph analysis (1)
apps/dashboard/src/app/bridge/page.tsx (3)
apps/dashboard/src/app/bridge/exchange/[token-pair]/page.tsx (1)
  • Page (53-93)
apps/dashboard/src/app/bridge/components/bridge-page.tsx (1)
  • BridgePageUI (7-30)
packages/thirdweb/src/exports/thirdweb.ts (1)
  • NATIVE_TOKEN_ADDRESS (31-31)
⏰ 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: Lint Packages
  • GitHub Check: Size
  • GitHub Check: Analyze (javascript)
🔇 Additional comments (2)
apps/dashboard/src/app/bridge/page.tsx (2)

2-2: LGTM!

The thirdweb imports are correctly used for address validation and native token fallback handling.


89-98: Helper function correctly handles single-value query params.

The function has an explicit return type and correctly extracts string values. Note that it silently ignores the string[] case (when the same query param appears multiple times), which is likely intentional for this use case.

@github-actions
Copy link
Contributor

github-actions bot commented Oct 22, 2025

size-limit report 📦

Path Size Loading time (3g) Running time (snapdragon) Total time
thirdweb (esm) 64.55 KB (0%) 1.3 s (0%) 184 ms (+246.7% 🔺) 1.5 s
thirdweb (cjs) 365.82 KB (0%) 7.4 s (0%) 599 ms (+26.73% 🔺) 8 s
thirdweb (minimal + tree-shaking) 5.73 KB (0%) 115 ms (0%) 98 ms (+3058.54% 🔺) 213 ms
thirdweb/chains (tree-shaking) 526 B (0%) 11 ms (0%) 67 ms (+4418.47% 🔺) 78 ms
thirdweb/react (minimal + tree-shaking) 19.09 KB (0%) 382 ms (0%) 73 ms (+2615.47% 🔺) 455 ms

@graphite-app
Copy link
Contributor

graphite-app bot commented Oct 22, 2025

Merge activity

…en selection (#8293)

<!--

## 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 enhances the `Page` component in `apps/dashboard/src/app/bridge/page.tsx` by introducing asynchronous handling of search parameters and improving the logic for processing input and output chains and currencies.

### Detailed summary

- Added a `SearchParams` type to define search parameters.
- Updated `Page` to accept `searchParams` as a `Promise`.
- Implemented `onlyAddress` and `onlyNumber` functions for validation.
- Introduced a `parse` function to extract values from search parameters.
- Updated the `BridgePageUI` props for `buyTab` and `swapTab` to handle dynamic token data.

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

<!-- end pr-codex -->
@vercel vercel bot temporarily deployed to Preview – thirdweb_playground October 22, 2025 21:57 Inactive
@vercel vercel bot temporarily deployed to Preview – nebula October 22, 2025 21:57 Inactive
@vercel vercel bot temporarily deployed to Preview – docs-v2 October 22, 2025 21:57 Inactive
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: 1

📜 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 fd06633 and c36cfbb.

📒 Files selected for processing (1)
  • apps/dashboard/src/app/bridge/page.tsx (3 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/bridge/page.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/bridge/page.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/bridge/page.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/bridge/page.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/bridge/page.tsx
🧬 Code graph analysis (1)
apps/dashboard/src/app/bridge/page.tsx (3)
apps/dashboard/src/app/bridge/exchange/[token-pair]/page.tsx (1)
  • Page (53-93)
apps/dashboard/src/app/bridge/components/bridge-page.tsx (1)
  • BridgePageUI (7-30)
packages/thirdweb/src/exports/thirdweb.ts (1)
  • NATIVE_TOKEN_ADDRESS (31-31)
⏰ 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: Lint Packages
  • GitHub Check: Size
  • GitHub Check: Analyze (javascript)

Comment on lines +28 to +36
const onlyNumber = (v: string) =>
Number.isNaN(Number(v)) ? undefined : Number(v);

// output is buy, input is sell
const sellChain = parse(searchParams.inputChain, onlyNumber);
const sellCurrency = parse(searchParams.inputCurrency, onlyAddress);

const buyChain = parse(searchParams.outputChain, onlyNumber);
const buyCurrency = parse(searchParams.outputCurrency, onlyAddress);
Copy link
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟠 Major

Harden chain ID parsing to reject empty/invalid values.

onlyNumber currently accepts values like "" or " " (coerced to 0) and any non-integer such as "1.5", so a query like ?outputChain= ends up sending chainId: 0. That’s not a valid EVM chain ID and will surface downstream as a broken bridge configuration. Please tighten the validator to bail out on blank strings and non-integer values before we build the embed props.

-  const onlyNumber = (v: string) =>
-    Number.isNaN(Number(v)) ? undefined : Number(v);
+  const onlyNumber = (v: string) => {
+    if (v.trim() === "") {
+      return undefined;
+    }
+    const parsed = Number(v);
+    return Number.isInteger(parsed) ? parsed : undefined;
+  };
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
const onlyNumber = (v: string) =>
Number.isNaN(Number(v)) ? undefined : Number(v);
// output is buy, input is sell
const sellChain = parse(searchParams.inputChain, onlyNumber);
const sellCurrency = parse(searchParams.inputCurrency, onlyAddress);
const buyChain = parse(searchParams.outputChain, onlyNumber);
const buyCurrency = parse(searchParams.outputCurrency, onlyAddress);
const onlyNumber = (v: string) => {
if (v.trim() === "") {
return undefined;
}
const parsed = Number(v);
return Number.isInteger(parsed) ? parsed : undefined;
};
// output is buy, input is sell
const sellChain = parse(searchParams.inputChain, onlyNumber);
const sellCurrency = parse(searchParams.inputCurrency, onlyAddress);
const buyChain = parse(searchParams.outputChain, onlyNumber);
const buyCurrency = parse(searchParams.outputCurrency, onlyAddress);
🤖 Prompt for AI Agents
In apps/dashboard/src/app/bridge/page.tsx around lines 28 to 36, the onlyNumber
validator currently coerces blank/whitespace and non-integer strings to 0 (e.g.
"" -> 0) which allows invalid chainId values; update the validator to first trim
and reject empty strings, then verify the raw string strictly represents an
integer (no decimals, no signs, e.g. using a /^\d+$/-style check or equivalent)
before converting to a Number, returning undefined for anything that fails so
parse(...) won't produce chainId: 0.

@graphite-app graphite-app bot merged commit c36cfbb into main Oct 22, 2025
24 checks passed
@graphite-app graphite-app bot deleted the mny-257 branch October 22, 2025 22:05
@vercel vercel bot temporarily deployed to Production – nebula October 22, 2025 22:05 Inactive
@vercel vercel bot temporarily deployed to Production – thirdweb_playground October 22, 2025 22:05 Inactive
@vercel vercel bot temporarily deployed to Production – wallet-ui October 22, 2025 22:05 Inactive
@vercel vercel bot temporarily deployed to Production – docs-v2 October 22, 2025 22: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.

3 participants