Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1827,7 +1827,7 @@ PODS:
- StripePayments (= 25.7.0)
- StripePaymentsUI (= 25.7.0)
- StripeUICore (= 25.7.0)
- stripe-react-native (0.59.0):
- stripe-react-native (0.59.1):
- hermes-engine
- RCTRequired
- RCTTypeSafety
Expand All @@ -1848,10 +1848,10 @@ PODS:
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- ReactNativeDependencies
- stripe-react-native/Core (= 0.59.0)
- stripe-react-native/NewArch (= 0.59.0)
- stripe-react-native/Core (= 0.59.1)
- stripe-react-native/NewArch (= 0.59.1)
- Yoga
- stripe-react-native/Core (0.59.0):
- stripe-react-native/Core (0.59.1):
- hermes-engine
- RCTRequired
- RCTTypeSafety
Expand Down Expand Up @@ -1879,7 +1879,7 @@ PODS:
- StripePaymentSheet (~> 25.7.0)
- StripePaymentsUI (~> 25.7.0)
- Yoga
- stripe-react-native/NewArch (0.59.0):
- stripe-react-native/NewArch (0.59.1):
- hermes-engine
- RCTRequired
- RCTTypeSafety
Expand All @@ -1901,7 +1901,7 @@ PODS:
- ReactCommon/turbomodule/core
- ReactNativeDependencies
- Yoga
- stripe-react-native/Onramp (0.59.0):
- stripe-react-native/Onramp (0.59.1):
- hermes-engine
- RCTRequired
- RCTTypeSafety
Expand All @@ -1925,7 +1925,7 @@ PODS:
- stripe-react-native/Core
- StripeCryptoOnramp (~> 25.7.0)
- Yoga
- stripe-react-native/Tests (0.59.0):
- stripe-react-native/Tests (0.59.1):
- hermes-engine
- RCTRequired
- RCTTypeSafety
Expand Down Expand Up @@ -2312,7 +2312,7 @@ SPEC CHECKSUMS:
RNCPicker: c8a3584b74133464ee926224463fcc54dfdaebca
RNScreens: 61c18865ab074f4d995ac8d7cf5060522a649d05
Stripe: 5a268e3dfb92bbb760b74204566b94bb5bac1bad
stripe-react-native: fab444deef0f860690e250992a7a013198294e5a
stripe-react-native: e68e9c8a291154b1704bcfd83a45ff196a67f6f3
StripeApplePay: b00ac8e20b37c6ff8e1560bb75cb29b44d1e9c6e
StripeCameraCore: 32629ce9af97164758ea8f31b581f23b9a755bc2
StripeCore: 4dee30f1a4df24aea608b07d43fb76e05a231e8e
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,13 @@ export default function PaymentSheetDeferredIntentMultiStepScreen() {
if (error) {
Alert.alert(`Error code: ${error.code}`, error.message);
} else {
Alert.alert('Success', 'The payment was confirmed successfully!');
Alert.alert(
'Success',
'The payment was confirmed successfully! Initializing next payment...'
);
setPaymentMethodOption(null);
setPaymentSheetEnabled(false);
await initialisePaymentSheet();
}
setLoading(false);
};
Expand Down