#secretsquirrel
1 messages · Page 1 of 1 (latest)
hello, you can add instrumentation on your end manually by logging out timestamps for when your backend requests creating a PaymentIntent, when PaymentElement is mounted, when PaymentElement is confirmed, when you're redirected to success page, etc
that will allow you to understand duration
Can you clarify what it means for the payment element to be mounted and confirmed?
your code initializes Payment Element in code
and later calls confirmPayment() on it when the "buy" button is clicked
so you can add timestamp logs before/around that
Understood, thank you
great!