feat: update payment handling in LobbyScreen and configure Stripe merchant identifiers
This commit is contained in:
5
App.js
5
App.js
@@ -31,7 +31,10 @@ export default function App() {
|
||||
|
||||
return (
|
||||
<SafeAreaProvider>
|
||||
<StripeProvider publishableKey={process.env.EXPO_PUBLIC_STRIPE_PUBLISHABLE_KEY || ''}>
|
||||
<StripeProvider
|
||||
publishableKey={process.env.EXPO_PUBLIC_STRIPE_PUBLISHABLE_KEY || ''}
|
||||
merchantIdentifier={process.env.EXPO_PUBLIC_STRIPE_MERCHANT_ID || 'merchant.com.devbeni.vegasblackjack'}
|
||||
>
|
||||
{!token || !user ? (
|
||||
<LoginScreen onLogin={login} loading={loading} />
|
||||
) : selectedTable ? (
|
||||
|
||||
Reference in New Issue
Block a user