From 7bf2701865e365096de2f2b2d66129e0c83f385b Mon Sep 17 00:00:00 2001 From: Skylar Ittner Date: Tue, 3 Mar 2026 14:34:03 -0700 Subject: [PATCH] Fix price mismatch --- source/static/payshipment.php | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/source/static/payshipment.php b/source/static/payshipment.php index 20da8e7..9300a36 100644 --- a/source/static/payshipment.php +++ b/source/static/payshipment.php @@ -14,12 +14,7 @@ try { if ($rate->id == $_REQUEST["rateid"]) { $cost = $rate->rate; $retail_rate = $rate->retail_rate ?? ($rate->list_rate ?? $rate->rate); - if ($retail_rate - $cost > 3) { - // Cap at $3 profit to be nice - $price = $cost + 3.00; - } else { - $price = $cost + 1.00; - } + $price = $retail_rate + 1.00; } }