Skip to content

Commit f74bb3e

Browse files
author
Your Name
committed
Stripe In Practice Course
1 parent 6deae8b commit f74bb3e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

server/checkout.route.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ function setupBaseSessionConfig(info: RequestInfo) {
6565
const config: any = {
6666
payment_method_types: ['card'],
6767
success_url: `${info.callbackUrl}/?purchaseResult=success`,
68-
cancel_url: `${info.callbackUrl}/?purchaseResult=failed`
68+
cancel_url: `${info.callbackUrl}/?purchaseResult=failed`,
69+
client_reference_id: ""
6970
};
7071

7172
return config;

0 commit comments

Comments
 (0)