kupos-ui-components-lib 9.0.8 → 9.0.9

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.
@@ -200,7 +200,7 @@ function ServiceItemPB({ serviceItem, onBookButtonPress, colors, metaData, child
200
200
  {
201
201
  key: "directo",
202
202
  width: "12%",
203
- condition: !(serviceItem === null || serviceItem === void 0 ? void 0 : serviceItem.is_direct_trip),
203
+ condition: serviceItem === null || serviceItem === void 0 ? void 0 : serviceItem.is_direct_trip,
204
204
  render: (React.createElement(DirectoBlock, { translation: translation, getAnimationIcon: getAnimationIcon, colors: colors, isSoldOut: isSoldOut })),
205
205
  },
206
206
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kupos-ui-components-lib",
3
- "version": "9.0.8",
3
+ "version": "9.0.9",
4
4
  "description": "A reusable UI components package",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -304,7 +304,7 @@ function ServiceItemPB({
304
304
  {
305
305
  key: "directo",
306
306
  width: "12%",
307
- condition: !serviceItem?.is_direct_trip,
307
+ condition: serviceItem?.is_direct_trip,
308
308
  render: (
309
309
  <DirectoBlock
310
310
  translation={translation}