#perf-reactnative-typescript

1 messages · Page 1 of 1 (latest)

astral saddle
#

Hello @clever coyote. Let me have a look

clever coyote
#

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.

astral saddle
#

Awesome, glad you figured it out quickly!

winged hornet
#

@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?```

clever coyote
#

ok

winged hornet
#

The above screenshot looks like you are using Payment Sheet, no?

clever coyote
#

yes

winged hornet
#

So you shouldn't be calling handleGooglePay() at all in that case.

#

Payment Sheet will handle the presentation and confirmation for you.

clever coyote
#

well there haha that works