Skip to content

[Playground] Update product details from hoodie to concert ticket #7473

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions apps/playground-web/src/app/connect/pay/commerce/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,9 @@ function BuyMerch() {
tokenAddress="0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
seller="0xEb0effdFB4dC5b3d5d3aC6ce29F3ED213E95d675"
feePayer="seller"
name="Black Hoodie"
description="Size L | Ships worldwide."
name="Concert Ticket"
image="https://example.com/concert-ticket.jpg"
description="Concert ticket for the upcoming show"
/>
);
};`}
Expand Down
6 changes: 3 additions & 3 deletions apps/playground-web/src/components/pay/direct-payment.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ export function BuyMerchPreview() {
amount={"2"}
chain={base}
client={THIRDWEB_CLIENT}
description="Size L | Ships worldwide."
description="Get your ticket for The Midnight Live"
feePayer="seller"
image="/drip-hoodie.png"
name="Black Hoodie"
image="https://images.unsplash.com/photo-1501281668745-f7f57925c3b4?w=500&h=300&fit=crop"
name="Concert Ticket"
seller="0xEb0effdFB4dC5b3d5d3aC6ce29F3ED213E95d675"
theme="light"
tokenAddress="0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,6 @@ export const EmbedContainer = /* @__PURE__ */ StyledDiv<{
color: theme.colors.selectedTextColor,
},
background: theme.colors.modalBg,
border: `1px solid ${theme.colors.borderColor}`,
borderRadius: radius.xl,
boxSizing: "border-box",
color: theme.colors.primaryText,
Expand Down
Loading