We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f3f5bc commit ff12ae8Copy full SHA for ff12ae8
src/components/shop/ShopAddressView.tsx
@@ -34,6 +34,7 @@ const ShopAddressView = () => {
34
country !== ''
35
) {
36
Alert.alert('Address saved successfully!');
37
+ uiStore.closeBottomSheet();
38
} else {
39
Alert.alert('Information missing.');
40
}
src/components/shop/ShopPaymentView.tsx
@@ -22,6 +22,7 @@ const ShopPaymentView = () => {
22
const onPressSave = () => {
23
if (cardNumber && expirationDate && securityCode && name !== '') {
24
Alert.alert('Card saved successfully!');
25
26
27
28
0 commit comments