You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When verifying a payment method, the app sends a request to Stripe for this value. However, a user is free to navigate backward in the process, eventually bringing themselves back at some point to requesting the Customer_id, which happens each time a user breaks and returns to the process.
Instead, it might be better to store Customer_id somehow, if not with Stripe directly, then in the database or other storage.
Customer_id
is a property under Stripe's Payment API.When verifying a payment method, the app sends a request to Stripe for this value. However, a user is free to navigate backward in the process, eventually bringing themselves back at some point to requesting the
Customer_id
, which happens each time a user breaks and returns to the process.Instead, it might be better to store
Customer_id
somehow, if not with Stripe directly, then in the database or other storage.relevant code:
components/forms/Payment/Payment.tsx
routes/api/payments.js
controller/payments/
models/User.js
The text was updated successfully, but these errors were encountered: