#henriquenascimento7167

1 messages ยท Page 1 of 1 (latest)

tall laurelBOT
#

Hello! We'll be with you shortly. 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.

uneven snow
#

const initializePaymentSheet = async () => {
const {
paymentIntent,
ephemeralKey,
customer,
publishableKey,
} = await fetchPaymentSheetParams();

const { error } = await initPaymentSheet({
  merchantDisplayName: "Blist",
  googlePay: {
    merchantCountryCode: 'US',
    currencyCode: 'usd',  
    // testEnv: true,
  },
  applePay: {
    merchantCountryCode: 'US',
  },
  style: 'automatic',
  customerId: customer,
  customerEphemeralKeySecret: ephemeralKey,
  paymentIntentClientSecret: paymentIntent,
  allowsDelayedPaymentMethods: true,
  defaultBillingDetails: {
    name: userData.name,
  }
});
if (!error) {
  setLoading(true);
  openPaymentSheet(paymentIntent);
}

};

pseudo briar
#

Hi ๐Ÿ‘‹ I've heard of problems in the past with app stores rejecting apps using our prebuilt libraries, even though our UIs already conform to their standards. Typically appealing the rejection is the best path forward there.

#

Hm, but that screenshot clearly shows dark on dark

tall laurelBOT
uneven snow
#

Even setting the style to automatic, the button remains dark regardless of the mode used on the device

primal sigil
#

๐Ÿ‘‹ taking a look

uneven snow
primal sigil
#

My understanding was that Paymentsheet updates the color automatically based on device dark mode settings. Don't see a way to set white color manually.

#

what happens if you set it to force light mode?