@bytebrand/fe-ui-core 4.2.158 → 4.2.159

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": "@bytebrand/fe-ui-core",
3
- "version": "4.2.158",
3
+ "version": "4.2.159",
4
4
  "description": "UI components for the auto.de project",
5
5
  "main": "index.ts",
6
6
  "module": "dist/common.js",
@@ -85,7 +85,6 @@ interface IVehicleSmallCardProps {
85
85
  isAlternative?: boolean;
86
86
  typeAlternative?: string;
87
87
  index?: number;
88
- currentPage?: number;
89
88
  }
90
89
 
91
90
  const VehicleSmallCard: FunctionComponent<IVehicleSmallCardProps> = (props) => {
@@ -145,8 +144,7 @@ const VehicleSmallCard: FunctionComponent<IVehicleSmallCardProps> = (props) => {
145
144
  minimizeData = false,
146
145
  isAlternative = false,
147
146
  typeAlternative,
148
- index,
149
- currentPage
147
+ index
150
148
  } = props;
151
149
 
152
150
  const combineRefAlternative = isAlternative || isReferenceSearch;