Skip to content

Conversation

@MananTank
Copy link
Member

@MananTank MananTank commented Aug 25, 2025


PR-Codex overview

This PR updates the CreatePaymentLinkButton component to enhance its dialog functionality and user interface by replacing the LinkIcon with a PlusIcon, improving form structure, and cleaning up commented-out code.

Detailed summary

  • Replaced LinkIcon with PlusIcon.
  • Updated dialog structure with DialogHeader, DialogDescription, and DialogContent.
  • Changed RequiredFormLabel to FormLabel for various fields.
  • Removed commented-out code related to image upload.
  • Improved form field classes for better styling.
  • Adjusted button layout and functionality.

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

Summary by CodeRabbit

  • Refactor

    • Split the payment link dialog into separate UI and logic pieces for clearer flow and more reliable form handling.
  • Style

    • Replaced icon with a plus icon, added dialog header (title + description), standardized labels, themed inputs, and introduced a bottom action bar.
  • Bug Fixes

    • Chain/token changes reset dependent fields; improved recipient and token validation; added creation progress indicator, success toast, and automatic refresh of payment links.

@vercel
Copy link

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

@vercel vercel bot temporarily deployed to Preview – thirdweb_playground August 25, 2025 20:29 Inactive
@vercel vercel bot temporarily deployed to Preview – wallet-ui August 25, 2025 20:29 Inactive
@vercel vercel bot temporarily deployed to Preview – docs-v2 August 25, 2025 20:29 Inactive
@vercel vercel bot temporarily deployed to Preview – nebula August 25, 2025 20:29 Inactive
@changeset-bot
Copy link

changeset-bot bot commented Aug 25, 2025

⚠️ No Changeset found

Latest commit: c6150be

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 25, 2025 20:29
@MananTank MananTank requested review from a team as code owners August 25, 2025 20:29
@coderabbitai
Copy link
Contributor

coderabbitai bot commented Aug 25, 2025

Walkthrough

Extracts dialog content from CreatePaymentLinkButton into a new internal CreatePaymentLinkDialogContent component, refactors UI and form layout, wires chain/token selectors with dependent resets, moves form state and validation into the inner component, and reimplements the create mutation with success/error handling and cache invalidation.

Changes

Cohort / File(s) Summary
Payments link dialog refactor
apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/payments/links/components/CreatePaymentLinkButton.client.tsx
Extracts dialog content to CreatePaymentLinkDialogContent; replaces LinkIcon with PlusIcon; refactors form UI (uses FormLabel, bg-card inputs, removes DialogFooter/FormDescription/RequiredFormLabel); adds DialogHeader; moves form state into inner component with useForm + zodResolver; loads chains via Bridge.chains; updates Chain/Token selectors to reset dependent fields; token resolution and recipient checksum/address validation performed before creation; mutation constructs payload, performs create, shows toast on success, invalidates queries, closes dialog and resets form; onError logs and shows parsed toast; retains commented legacy upload code.

Sequence Diagram(s)

sequenceDiagram
  autonumber
  actor User
  participant Button as CreatePaymentLinkButton
  participant Dialog as Dialog
  participant Content as CreatePaymentLinkDialogContent
  participant Bridge as Bridge/TokenResolver
  participant API as CreatePaymentLinkMutation
  participant Toast as Toast
  participant Cache as QueryClient

  User->>Button: Click "Create payment link"
  Button->>Dialog: Open
  Dialog->>Content: Mount (init form)

  User->>Content: Fill Title, Recipient, Chain, Token, Amount
  Content->>Bridge: Fetch chains/tokens as needed
  Note over Content,Bridge: Changing Chain resets tokenAddress

  User->>Content: Submit
  Content->>Content: Validate (zod)
  Content->>Bridge: Resolve token & recipient checksum
  Content->>API: mutationFn(payload)
  alt Success
    API-->>Content: Created link
    Content->>Toast: Show success toast
    Content->>Cache: Invalidate payment links
    Content->>Dialog: Close
    Content->>Content: Reset form
  else Error
    API-->>Content: Error
    Content->>Toast: Show parsed error
  end
Loading

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~25 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 add90ba and c6150be.

📒 Files selected for processing (1)
  • apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/payments/links/components/CreatePaymentLinkButton.client.tsx (7 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/payments/links/components/CreatePaymentLinkButton.client.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). (8)
  • GitHub Check: E2E Tests (pnpm, esbuild)
  • GitHub Check: Size
  • GitHub Check: E2E Tests (pnpm, vite)
  • GitHub Check: Unit Tests
  • GitHub Check: E2E Tests (pnpm, webpack)
  • GitHub Check: Lint Packages
  • GitHub Check: Build Packages
  • 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-26-dashboard_create_payment_link_dialog_fixes_ui_tweaks

🪧 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.

@github-actions github-actions bot added the Dashboard Involves changes to the Dashboard. label Aug 25, 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.

@codecov
Copy link

codecov bot commented Aug 25, 2025

Codecov Report

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

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #7908   +/-   ##
=======================================
  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.

@github-actions
Copy link
Contributor

github-actions bot commented Aug 25, 2025

size-limit report 📦

Path Size Loading time (3g) Running time (snapdragon) Total time
thirdweb (esm) 64.06 KB (0%) 1.3 s (0%) 323 ms (+85.5% 🔺) 1.7 s
thirdweb (cjs) 357.05 KB (0%) 7.2 s (0%) 1.3 s (+4.18% 🔺) 8.5 s
thirdweb (minimal + tree-shaking) 5.73 KB (0%) 115 ms (0%) 64 ms (+662.02% 🔺) 178 ms
thirdweb/chains (tree-shaking) 526 B (0%) 11 ms (0%) 37 ms (+1100% 🔺) 47 ms
thirdweb/react (minimal + tree-shaking) 19.15 KB (0%) 383 ms (0%) 56 ms (+168.46% 🔺) 439 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

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (1)
apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/payments/links/components/CreatePaymentLinkButton.client.tsx (1)

253-261: Enforce strictly positive amounts (schema + UI control)

Payments with 0 or negative amounts should be rejected at both the UI and validation layers.

  • UI: add a min constraint to the number input to prevent accidental negatives.
  • Schema: ensure amount is > 0 so API payloads are always valid.

Apply this UI diff:

-                  <Input
-                    className="w-full bg-card"
-                    {...field}
-                    placeholder="0.0"
-                    required
-                    step="any"
-                    type="number"
-                  />
+                  <Input
+                    className="w-full bg-card"
+                    {...field}
+                    placeholder="0.0"
+                    required
+                    step="any"
+                    min="0"
+                    type="number"
+                  />

And update the schema accordingly (outside this range):

-  amount: z.coerce.number(),
+  amount: z.coerce.number().gt(0, "Amount must be greater than 0"),

Optional UX improvement: disable the “Create” button until the form is valid.

-  const form = useForm<z.infer<typeof formSchema>>({
+  const form = useForm<z.infer<typeof formSchema>>({
+    mode: "onChange",
     defaultValues: {
       ...
     },
     resolver: zodResolver(formSchema),
   });
-              disabled={createMutation.isPending}
+              disabled={createMutation.isPending || !form.formState.isValid}
🧹 Nitpick comments (4)
apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/payments/links/components/CreatePaymentLinkButton.client.tsx (4)

85-91: Add a sensible staleTime for chains query (guideline: ≥ 60s)

Bridge.chains is relatively static. Set a staleTime to reduce refetch churn and align with the app guidelines.

   const chainsQuery = useQuery({
     queryFn: async () => {
       return await Bridge.chains({ client });
     },
     queryKey: ["payments-chains"],
+    staleTime: 60_000,
   });

92-126: Defensive token metadata handling and consistent checksum usage

Two small hardening tweaks:

  • Pass a checksummed address into getUniversalBridgeTokens for consistency.
  • Fail fast if decimals are missing to avoid sending malformed units.
   const createMutation = useMutation({
     mutationFn: async (values: z.infer<typeof formSchema>) => {
-      const tokens = await getUniversalBridgeTokens({
-        chainId: values.chainId,
-        address: values.tokenAddress,
-      });
+      const tokens = await getUniversalBridgeTokens({
+        chainId: values.chainId,
+        address: checksumAddress(values.tokenAddress),
+      });

       const token = tokens[0];
       if (!token) {
         throw new Error("Token not found");
       }
+      if (token.decimals == null) {
+        throw new Error("Token metadata missing decimals");
+      }

185-193: Remove redundant prop overrides on Input

{...field} already provides value and onChange. Overriding them is unnecessary and can cause confusion.

-                  <Input
-                    className="w-full bg-card"
-                    {...field}
-                    onChange={field.onChange}
-                    value={field.value}
-                    placeholder="Address or ENS"
-                    required
-                  />
+                  <Input
+                    className="w-full bg-card"
+                    placeholder="Address or ENS"
+                    required
+                    {...field}
+                  />

206-214: Use watch() for chainId and gate token fetch with enabled

Relying on form.getValues() is fine, but watch("chainId") is reactive and reads better. Also, pass an enabled flag to TokenSelector so its internal query can be skipped when chainId is falsy.

Add a watcher after useForm:

   const form = useForm<z.infer<typeof formSchema>>({
     ...
   });
+  const chainId = form.watch("chainId");

Then wire it through:

-                    chainId={form.getValues().chainId}
+                    chainId={chainId}
-                    disabled={!form.getValues().chainId}
+                    disabled={!chainId}
+                    enabled={Boolean(chainId)}
...
-                            chainId: form.getValues().chainId,
+                            chainId,

Also applies to: 227-241

📜 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 27f50a8 and add90ba.

📒 Files selected for processing (1)
  • apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/payments/links/components/CreatePaymentLinkButton.client.tsx (7 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)/payments/links/components/CreatePaymentLinkButton.client.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)/payments/links/components/CreatePaymentLinkButton.client.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)/payments/links/components/CreatePaymentLinkButton.client.tsx
🧠 Learnings (3)
📚 Learning: 2025-08-20T10:35:18.543Z
Learnt from: jnsdls
PR: thirdweb-dev/js#7888
File: apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/payments/page.tsx:77-81
Timestamp: 2025-08-20T10:35:18.543Z
Learning: The webhooks/payments route exists at apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/webhooks/payments/page.tsx and was added as part of the unified project layout changes.

Applied to files:

  • apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/payments/links/components/CreatePaymentLinkButton.client.tsx
📚 Learning: 2025-08-20T10:35:18.543Z
Learnt from: jnsdls
PR: thirdweb-dev/js#7888
File: apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/payments/page.tsx:77-81
Timestamp: 2025-08-20T10:35:18.543Z
Learning: The webhooks/payments route exists at apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/webhooks/payments/page.tsx and was added as part of the unified project layout PR #7888.

Applied to files:

  • apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/payments/links/components/CreatePaymentLinkButton.client.tsx
📚 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)/payments/links/components/CreatePaymentLinkButton.client.tsx
🧬 Code graph analysis (1)
apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/payments/links/components/CreatePaymentLinkButton.client.tsx (3)
apps/dashboard/src/@/analytics/report.ts (1)
  • reportPaymentLinkCreated (433-438)
apps/dashboard/src/@/components/blocks/TokenSelector.tsx (1)
  • TokenSelector (23-210)
packages/thirdweb/src/react/web/ui/components/Spinner.tsx (1)
  • Spinner (11-34)
⏰ 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, esbuild)
  • GitHub Check: Size
  • GitHub Check: Lint Packages
  • GitHub Check: Analyze (javascript)
🔇 Additional comments (4)
apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/payments/links/components/CreatePaymentLinkButton.client.tsx (4)

52-64: Solid separation of concerns with an internal dialog content component

Extracting CreatePaymentLinkDialogContent and keeping CreatePaymentLinkButton slim makes the flow clearer and easier to test. Controlled Dialog state is also clean.

Also applies to: 66-71


268-282: Action bar UX looks good

Clear pending state with icon swap, disabled submit during mutation, and consistent bg-card footer. Nice touch.


275-279: No changes needed for Spinner usage

The Spinner component in apps/dashboard/src/@/components/ui/Spinner/Spinner.tsx only accepts a className prop (it does not support a size prop). Your usage of <Spinner className="size-4" /> is correct and will not cause any runtime styling mismatches.


202-214: I’ve kicked off a script to verify how disableChainId is defined and used in the dashboard’s SingleNetworkSelector. Once we see whether it truly prevents user interaction (and thus onChange firing), we can confirm or update the suggestion.

@graphite-app
Copy link
Contributor

graphite-app bot commented Aug 25, 2025

Merge activity

<!--

## 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 updates the `CreatePaymentLinkButton` component to enhance its dialog interface and improve the overall user experience. It replaces the `LinkIcon` with a `PlusIcon`, refines form elements, and cleans up unused code.

### Detailed summary
- Replaced `LinkIcon` with `PlusIcon`.
- Updated dialog structure and content.
- Changed `RequiredFormLabel` to `FormLabel` for consistency.
- Improved styling by adding `bg-card` class to input fields.
- Removed commented-out code related to image upload functionality.
- Enhanced form layout and submission handling.

> ✨ 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

- **Refactor**
  - Streamlined the payment link creation flow with a clearer dialog and improved form handling for a smoother experience.

- **Style**
  - Updated to a plus icon, added a header with title and description, standardized labels, themed inputs, and introduced a bottom action bar.

- **Bug Fixes**
  - Chain and token changes now properly reset related fields.
  - Improved validation for recipient address and token selection.
  - Added progress indicator during creation.
  - Success toast and automatic refresh ensure newly created payment links appear immediately.

<!-- end of auto-generated comment: release notes by coderabbit.ai -->
@graphite-app graphite-app bot force-pushed the 08-26-dashboard_create_payment_link_dialog_fixes_ui_tweaks branch from add90ba to c6150be Compare August 25, 2025 20:37
@vercel vercel bot temporarily deployed to Preview – nebula August 25, 2025 20:37 Inactive
@vercel vercel bot temporarily deployed to Preview – thirdweb_playground August 25, 2025 20:37 Inactive
@vercel vercel bot temporarily deployed to Preview – docs-v2 August 25, 2025 20:37 Inactive
@vercel vercel bot temporarily deployed to Preview – wallet-ui August 25, 2025 20:38 Inactive
@graphite-app graphite-app bot merged commit c6150be into main Aug 25, 2025
25 checks passed
@graphite-app graphite-app bot deleted the 08-26-dashboard_create_payment_link_dialog_fixes_ui_tweaks branch August 25, 2025 20:48
@vercel vercel bot temporarily deployed to Production – nebula August 25, 2025 20:48 Inactive
@vercel vercel bot temporarily deployed to Production – docs-v2 August 25, 2025 20:48 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