Skip to content

Commit e490364

Browse files
committed
lint fix
1 parent 3962d12 commit e490364

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

packages/thirdweb/src/react/web/ui/PayEmbed.tsx

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,9 @@ export function PayEmbed(props: PayEmbedProps) {
363363
? ["card"]
364364
: ["crypto", "card"]
365365
}
366-
purchaseData={props.payOptions?.purchaseData as Record<string, unknown> | undefined}
366+
purchaseData={
367+
props.payOptions?.purchaseData as Record<string, unknown> | undefined
368+
}
367369
theme={theme}
368370
title={metadata?.name || "Buy"}
369371
tokenAddress={
@@ -388,7 +390,9 @@ export function PayEmbed(props: PayEmbedProps) {
388390
? ["crypto"]
389391
: ["crypto", "card"]
390392
}
391-
purchaseData={props.payOptions?.purchaseData as Record<string, unknown> | undefined}
393+
purchaseData={
394+
props.payOptions?.purchaseData as Record<string, unknown> | undefined
395+
}
392396
seller={props.payOptions.paymentInfo.sellerAddress as Address}
393397
theme={theme}
394398
tokenAddress={
@@ -410,7 +414,9 @@ export function PayEmbed(props: PayEmbedProps) {
410414
? ["crypto"]
411415
: ["crypto", "card"]
412416
}
413-
purchaseData={props.payOptions?.purchaseData as Record<string, unknown> | undefined}
417+
purchaseData={
418+
props.payOptions?.purchaseData as Record<string, unknown> | undefined
419+
}
414420
theme={theme}
415421
title={metadata?.name}
416422
transaction={props.payOptions.transaction}

0 commit comments

Comments
 (0)