#perf-reactnative-typescript
1 messages · Page 1 of 1 (latest)
Side note, after recompiling i am seeing the button on the sheet now.
However when attempting to process the payment I see this alert modal
wait!!! never I resolved my own issue. My gPay wallet wasn't correctly authenticated within that app itself.
Awesome, glad you figured it out quickly!
@clever coyote going to move your question in here: ```When calling the following for google pay
async function handleGooglePay(){
const res = await google.presentGooglePay({
clientSecret: paymentIntentClientSecret,
forSetupIntent: false
})
if (!res.error) {
...
} else {
...
}
}
the await google.presentGooglePay is just hanging. Any suggestions?```
ok
The above screenshot looks like you are using Payment Sheet, no?
yes
So you shouldn't be calling handleGooglePay() at all in that case.
Payment Sheet will handle the presentation and confirmation for you.
well there haha that works