When processing Google Pay payments in Flow, you may receive the following error:
Something went wrong
This merchant is having trouble accepting your payment at the moment. Try using a different payment method.
[OR_BIBED_11]
The OR_BIBED_11 error code means that you haven't completed registering your app to use Google Pay.
To fix this error, ensure that you pass the correct environment when initializing Flow:
const checkout = await CheckoutWebComponents({
publicKey: PUBLIC_KEY,
environment: "sandbox", // or "production"
});