diff --git a/backend/src/api/fee-api.ts b/backend/src/api/fee-api.ts index 489f6a067..2a1a26efe 100644 --- a/backend/src/api/fee-api.ts +++ b/backend/src/api/fee-api.ts @@ -68,11 +68,11 @@ class FeeApi { hourFee = Math.max(hourFee, economyFee); return { - 'fastestFee': fastestFee, - 'halfHourFee': halfHourFee, - 'hourFee': hourFee, - 'economyFee': economyFee, - 'minimumFee': minimumFee, + 'fastestFee': this.roundToNearest(fastestFee, minIncrement), + 'halfHourFee': this.roundToNearest(halfHourFee, minIncrement), + 'hourFee': this.roundToNearest(hourFee, minIncrement), + 'economyFee': this.roundToNearest(economyFee, minIncrement), + 'minimumFee': this.roundToNearest(minimumFee, minIncrement), }; }