feat: update payment handling in LobbyScreen and configure Stripe merchant identifiers

This commit is contained in:
2025-12-20 23:28:23 +01:00
parent 36e2cde26b
commit adefca23ca
4 changed files with 14 additions and 3 deletions

View File

@@ -39,7 +39,14 @@ export default function LobbyScreen({ user, token, onLogout, onSelectTable, onRe
const init = await initPaymentSheet({
merchantDisplayName: 'Vegas Blackjack',
paymentIntentClientSecret: data.clientSecret
paymentIntentClientSecret: data.clientSecret,
applePay: {
merchantCountryCode: 'HU'
},
googlePay: {
merchantCountryCode: 'HU',
testEnv: __DEV__
}
});
if (init.error) {