#mahendra_unexpected
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
đ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1418099655048429600
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- mahendra_error, 15 hours ago, 17 messages
Hi! Where are you accessing the application from?
android device and also check on mac mini and windows system
Apologies, I meant which country?
india
Google Pay is not available in India: https://docs.stripe.com/google-pay
Customer locations Worldwide except India
This is why you will not be able to view it.
apple is also not show
Is this for a mobile app or a website?
Sorry both as in there is a mobile app and also a website?
website
Could you share your development website so I can replicate the issue? If applicable, please also include any login credentials and the steps needed to navigate to the page where Google Pay and Apple Pay are supposed to show.
Is the payment supposed to be showing here: https://www.resultplan.com/checkout?
yes
I tested it and was able to view Google Pay. For Apple Pay I am seeing the error above. You shouldn't be passing a decimal.
const pr = stripe.paymentRequest({
country: "GB",
currency: "gbp",
// country: "US",
// currency: "usd",
total: {
label: "Result plan",
amount: cartProduct?.item?.grandTotal * 100, // Convert to cents
},
requestPayerName: true,
requestPayerEmail: true,
disableWallets: ["link"],
// requestShipping: isShippingAddress,
});
here is my code
Can you try to print the amount to see what you get?