diff --git a/ipi-survey-platform/src/components/survey/ProductData/ProductData.jsx b/ipi-survey-platform/src/components/survey/ProductData/ProductData.jsx index 8af8acd..b392211 100644 --- a/ipi-survey-platform/src/components/survey/ProductData/ProductData.jsx +++ b/ipi-survey-platform/src/components/survey/ProductData/ProductData.jsx @@ -1191,14 +1191,14 @@ useEffect(() => { // If previous cost is 0, return 0 to avoid division by zero if (totalPreviousCost === 0) { - // console.log('🔍 Variation Calculation: Previous cost is 0, returning 0% variation'); + // console.log(' Variation Calculation: Previous cost is 0, returning 0% variation'); return 0; } // Calculate percentage variation const variation = ((totalCurrentCost - totalPreviousCost) / totalPreviousCost) * 100; - // console.log('🔍 Variation Calculation Details:', { + // console.log('Variation Calculation Details:', { // productId: product.id || 'unknown', // previousCosts, // currentCosts,