diff --git a/src/components/map-card.js b/src/components/map-card.js
index 0b3e594..15ef835 100644
--- a/src/components/map-card.js
+++ b/src/components/map-card.js
@@ -89,9 +89,6 @@ export class VehicleMap extends LitElement {
height: 100%;
width: 100%;
background: transparent !important;
- /* mask-image: radial-gradient(circle at 70%, black 20%, transparent 90%),
- linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%),
- linear-gradient(to left, transparent 0%, black 30%); */
mask-image: linear-gradient(to right, transparent 0%, black 25%, black 90%, transparent 100%),
linear-gradient(to bottom, transparent 20%, black 35%, black 90%, transparent 100%);
mask-composite: intersect;
diff --git a/src/vehicle-info-card.ts b/src/vehicle-info-card.ts
index a084238..42386a2 100644
--- a/src/vehicle-info-card.ts
+++ b/src/vehicle-info-card.ts
@@ -91,20 +91,6 @@ export class VehicleCard extends LitElement {
...config,
};
- // // Helper function to handle creating cards based on config property names
- // const createConfigCards = (configProperty: keyof VehicleCardConfig, target: string) => {
- // const cardConfig = this.config[configProperty];
- // if (cardConfig) {
- // this.createCards(cardConfig, target);
- // }
- // };
-
- // // Create cards for each specific config property
- // createConfigCards('trip_card', 'tripCards');
- // createConfigCards('vehicle_card', 'vehicleCards');
- // createConfigCards('eco_card', 'ecoCards');
- // createConfigCards('tyre_card', 'tyreCards');
-
for (const cardType of cardTypes) {
if (this.config[cardType.config]) {
this.createCards(this.config[cardType.config], cardType.type);
@@ -260,20 +246,20 @@ export class VehicleCard extends LitElement {
${name}