@yorkjs/hive-ui 2.2.2 → 2.2.4

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": "@yorkjs/hive-ui",
3
- "version": "2.2.2",
3
+ "version": "2.2.4",
4
4
  "description": "Hive UI - Taro React component library",
5
5
  "main": "src/index.ts",
6
6
  "module": "src/index.ts",
@@ -318,8 +318,7 @@ const ProductItem: React.FC<IProductCardProps> = (props) => {
318
318
  </View>
319
319
  </ScrollView>
320
320
  )}
321
- {customTags}
322
- {(activityType || deliveryTags) && (
321
+ {(activityType || deliveryTags || customTags) && (
323
322
  <View className={styles['tag-row']}>
324
323
  {activityType && labels.activity_type && (
325
324
  <View className={styles['activity-tag']}>
@@ -336,6 +335,7 @@ const ProductItem: React.FC<IProductCardProps> = (props) => {
336
335
  </View>
337
336
  )}
338
337
  {deliveryTags}
338
+ {customTags}
339
339
  </View>
340
340
  )}
341
341
  {