package.lock added

This commit is contained in:
Brice Zele 2021-10-26 20:47:52 +01:00
parent 011436fde4
commit 99b99a902f
3 changed files with 10 additions and 7844 deletions

View File

@ -1,6 +1,5 @@
#Wed Oct 14 15:00:41 WAT 2020
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-all.zip distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-all.zip

7835
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -44,12 +44,14 @@ import {connect} from 'react-redux';
import {bindActionCreators} from 'redux'; import {bindActionCreators} from 'redux';
import { import {
cutString, cutString,
cutStringWithoutDot, displayToast, cutStringWithoutDot,
displayToast,
isEmptyObject, isEmptyObject,
optionDepotUserScreen, optionDepotUserScreen,
optionIdentificationUserScreen, optionIdentificationUserScreen,
optionLinkAccountUserScreen, optionNanoCreditAgentScreen, optionLinkAccountUserScreen,
optionNanoCreditScreen, optionNanoSanteUserScreen, optionNanoCreditScreen,
optionNanoSanteUserScreen,
optionPaiementFacture, optionPaiementFacture,
optionRetraitUserScreen, optionRetraitUserScreen,
transactionHistoryIlinkLabel transactionHistoryIlinkLabel
@ -861,10 +863,10 @@ class WalletDetailUser extends Component {
isEqual(element, 'montant') ? isEqual(element, 'montant') ?
` ${item[element].length > 8 ? cutString(thousands(item[element], ' '), 6) : thousands(item[element], ' ')}` ` ${item[element].length > 8 ? cutString(thousands(item[element], ' '), 6) : thousands(item[element], ' ')}`
: isEqual(element, 'destinataire') ? : isEqual(element, 'destinataire') ?
item[element].length > 13 ? cutString(item[element], 13) : item[element] item[element].length > 13 ? cutString(item[element], 13) : item[element]
: isEqual(element, 'date') ? : isEqual(element, 'date') ?
cutStringWithoutDot(item[element], 16) cutStringWithoutDot(item[element], 16)
: item[element] : item[element]
} }
</Text> </Text>
</View> </View>