remboursement nano credit OK

This commit is contained in:
Brice 2020-11-11 11:34:53 +01:00
parent 1adcfa786e
commit b03dcbee76
1 changed files with 4 additions and 4 deletions

View File

@ -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)
}}
/>
</Animatable.View>