File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
packages/thirdweb/src/react/web/ui Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments