From b03dcbee769315202db95e656bf20142fee67800 Mon Sep 17 00:00:00 2001 From: Brice Date: Wed, 11 Nov 2020 11:34:53 +0100 Subject: [PATCH] remboursement nano credit OK --- screens/nano-credit/CautionNanoCreditAgent.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/screens/nano-credit/CautionNanoCreditAgent.js b/screens/nano-credit/CautionNanoCreditAgent.js index 97456a05..44a5cc7c 100644 --- a/screens/nano-credit/CautionNanoCreditAgent.js +++ b/screens/nano-credit/CautionNanoCreditAgent.js @@ -405,19 +405,19 @@ class CautionNanoCreditAgent extends Component { if (value === I18n.t('WITHDRAWAL_IN_CASH')) this.setState({ withdrawalInCash: true, - withdrawalInCashTypeName: I18n.t('WITHDRAWAL_IN_CASH') + withdrawalInCashTypeName: 'WITHDRAWAL_IN_CASH' }); else this.setState({ withdrawalInCash: false, - withdrawalInCashTypeName: I18n.t('TRANSFER_IN_ACCOUNT') + withdrawalInCashTypeName: 'TRANSFER_IN_ACCOUNT' }) }} valueExtractor={(value) => { - return value.name + return I18n.t(value.name) }} labelExtractor={(value) => { - return value.name + return I18n.t(value.name) }} />