File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
apps/dashboard/src/app/pay Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ export default async function PayPage({
57
57
< PayPageWidget
58
58
amount = { paymentLink . amount ? BigInt ( paymentLink . amount ) : undefined }
59
59
chainId = { Number ( paymentLink . destinationToken . chainId ) }
60
- clientId = { paymentLink . clientId }
60
+ clientId = { undefined } // Payment links don't need to use the same client ID to be executed
61
61
image = { paymentLink . imageUrl }
62
62
name = { paymentLink . title }
63
63
paymentLinkId = { id }
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ export function PayPageWidget({
28
28
name ?: string ;
29
29
image ?: string ;
30
30
redirectUri ?: string ;
31
- clientId : string ;
31
+ clientId : string | undefined ;
32
32
theme ?: "light" | "dark" ;
33
33
purchaseData : Record < string , unknown > | undefined ;
34
34
} ) {
You can’t perform that action at this time.
0 commit comments