corrige l'erreur flow ***recusion limit exceeded***

pull/269/head
Johan Girod 2018-07-03 14:54:06 +02:00 committed by Mael
parent 75558ba51e
commit 9154501165
2 changed files with 2 additions and 2 deletions

View File

@ -5,6 +5,7 @@
[include]
[libs]
[options]

View File

@ -14,7 +14,6 @@ import {
pipe,
reduce,
sort,
values,
without
} from 'ramda'
import { createSelector } from 'reselect'
@ -142,7 +141,7 @@ const répartition = (ficheDePaie: FicheDePaie): Répartition => {
cotisationMaximum: compose(
reduce(max, 0),
map(montant => montant.partPatronale + montant.partSalariale),
values
Object.values
// $FlowFixMe
)(répartitionMap),
salaireNet,