ordering-ui-react-native 0.16.10 → 0.16.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -102,7 +102,7 @@ export const StripeMethodForm = (props: StripeMethodFormParams) => {
|
|
|
102
102
|
shippingMethods: [
|
|
103
103
|
{
|
|
104
104
|
amount: cart?.balance?.toString() ?? cart?.total?.toString?.(),
|
|
105
|
-
identifier: '
|
|
105
|
+
identifier: 'standard',
|
|
106
106
|
label: 'Courier',
|
|
107
107
|
detail: 'Delivery',
|
|
108
108
|
type: 'final',
|
|
@@ -125,7 +125,6 @@ export const StripeMethodForm = (props: StripeMethodFormParams) => {
|
|
|
125
125
|
last4: paymentMethod.Card.last4
|
|
126
126
|
}
|
|
127
127
|
})
|
|
128
|
-
onCancel()
|
|
129
128
|
}
|
|
130
129
|
}
|
|
131
130
|
|