ordering-ui-react-native 0.23.2 → 0.23.3

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ordering-ui-react-native",
3
- "version": "0.23.2",
3
+ "version": "0.23.3",
4
4
  "description": "Reusable components made in react native",
5
5
  "main": "src/index.tsx",
6
6
  "author": "ordering.inc",
@@ -243,12 +243,12 @@ const BusinessProductsListingUI = (props: BusinessProductsListingParams) => {
243
243
  props.onNavigationRedirect('CheckoutNavigator', {
244
244
  screen: 'MultiCheckout',
245
245
  checkCarts: true
246
- }, true)
246
+ })
247
247
  } else {
248
248
  props.onNavigationRedirect('CheckoutNavigator', {
249
249
  screen: 'MultiCheckout',
250
250
  cartUuid: cartsAvailable[0]?.group?.uuid
251
- }, true)
251
+ })
252
252
  }
253
253
  }
254
254
  }