ui-kit-ck-consultant 0.5.173 → 0.5.174

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.
@@ -1290,6 +1290,11 @@ var TabsCustomItem = /*#__PURE__*/function (_React$Component) {
1290
1290
  var _classNames;
1291
1291
 
1292
1292
  var tabsItemClass = classNames$1((_classNames = {}, _classNames[style$f.tabs_custom_item] = true, _classNames[style$f.active] = !!this.props.active, _classNames[this.props.className] = !!this.props.className, _classNames));
1293
+
1294
+ if (!this.props.active) {
1295
+ return null;
1296
+ }
1297
+
1293
1298
  return /*#__PURE__*/React.createElement("div", {
1294
1299
  className: tabsItemClass
1295
1300
  }, this.props.children);