From b4992546d12f21608b9a26f2f72f0a2ca0b64269 Mon Sep 17 00:00:00 2001 From: Stephanos A Date: Wed, 15 Jul 2026 10:43:19 +0300 Subject: [PATCH] Build issue resolution --- .../edr-passenger-api/src/modules/payments/payments.service.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/edr-passenger-api/src/modules/payments/payments.service.ts b/apps/edr-passenger-api/src/modules/payments/payments.service.ts index 495edc17c..36d3fbd1d 100644 --- a/apps/edr-passenger-api/src/modules/payments/payments.service.ts +++ b/apps/edr-passenger-api/src/modules/payments/payments.service.ts @@ -259,8 +259,9 @@ export class PaymentsService { chargeAmount = this.currencyService.displayMinorToChargeMajor(booking.totalMinor, 'ETB'); } else { // Booking is in ETB — convert to the provider's settlement currency. - chargeAmount = await this.currencyService.convertEtbMinorToChargeMajor( + chargeAmount = await this.currencyService.convertMinorToChargeMajor( booking.totalMinor, + 'ETB', chargeCurrency, ); }