#alisa-morenko_code
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/1479434481877389464
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
๐ Can you share some details of your implementation? At what point does this error occur?
Despite the linter error, the payment goes through successfully.
At the moment when I simply inserted the code from the documentation
The type param in your code above doesn't appear to be a valid param: https://docs.stripe.com/js/payment_intents/confirm_payment#confirm_payment_intent-options-confirmParams-payment_method_data
The same behavior occurs not only for me, but also for my colleague.
Are you basing this code on a guide somewhere?
Looks like this may be a quirk of how Revolut Pay is handled in the SDK, but as you've noticed, it shouldn't affect the payment. You may be able to supress the warning by typing the payment_method_data as any in your code. e.g. payment_method_data: { type: 'revolut_pay', } as any,