diff --git a/src/components/PriceCar/PriceCar.tsx b/src/components/PriceCar/PriceCar.tsx
index 9ba40ac..c90360c 100644
--- a/src/components/PriceCar/PriceCar.tsx
+++ b/src/components/PriceCar/PriceCar.tsx
@@ -6,7 +6,7 @@ const PRICE_INCREASE_PERCENT_PER_RATING = 10; // 10% за каждый балл
 
 export const PriceCar = ({ image, rating }) => {
   const BASE_WASH_PRICE: number = Number(
-    getFeatures('dry-wash')['order-cost'].value,
+    getFeatures('dry-wash')['order-cost']?.value || 1000,
   );
 
   const calculateWashPrice = (rating: number) => {