@thecb/components 7.7.8-beta.12 → 7.7.8-beta.13

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": "@thecb/components",
3
- "version": "7.7.8-beta.12",
3
+ "version": "7.7.8-beta.13",
4
4
  "description": "Common lib for CityBase react components",
5
5
  "main": "dist/index.cjs.js",
6
6
  "typings": "dist/index.d.ts",
@@ -1,4 +1,4 @@
1
- import React, { memo } from "react";
1
+ import React from "react";
2
2
  import { repeat } from "ramda";
3
3
 
4
4
  import { fallbackValues } from "./HighlightTabRow.theme";
@@ -80,6 +80,8 @@ const HighlightTabRow = ({
80
80
  );
81
81
  };
82
82
 
83
- export default memo(
84
- themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues)
83
+ export default themeComponent(
84
+ HighlightTabRow,
85
+ "HighlightTabRow",
86
+ fallbackValues
85
87
  );