diff --git a/backend/ride/pricing/get.php b/backend/ride/pricing/get.php index dc8f6ffb..e8d40c0f 100644 --- a/backend/ride/pricing/get.php +++ b/backend/ride/pricing/get.php @@ -404,7 +404,7 @@ function calculateDynamicPrice($country, $minFare, $distance, $duration, $kazanR } // Apply kazan (e.g. 11%) on the passenger's price - $withCommission = ceil($price * (1 + $kazanPercent / 100)); + $withCommission = round($price * (1 + $kazanPercent / 100), 2); // Driver price is based on the surged fare ($fareWithSurge) $driverPriceTarget = max($fareWithSurge, $minFare);