From 9d5ff9cfd0fcd3fbb4b44177e17cb19c3c3c073c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Guillois?= Date: Tue, 3 Mar 2020 10:17:56 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Corrige=20le=20r=C3=A9capitulati?= =?UTF-8?q?f?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../AideDéclarationIndépendantsRécapitulatif.tsx | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/source/sites/mon-entreprise.fr/pages/Gérer/AideDéclarationIndépendantsRécapitulatif.tsx b/source/sites/mon-entreprise.fr/pages/Gérer/AideDéclarationIndépendantsRécapitulatif.tsx index fe8b60d16..044d63afe 100644 --- a/source/sites/mon-entreprise.fr/pages/Gérer/AideDéclarationIndépendantsRécapitulatif.tsx +++ b/source/sites/mon-entreprise.fr/pages/Gérer/AideDéclarationIndépendantsRécapitulatif.tsx @@ -12,6 +12,7 @@ export function AideDéclarationIndépendantsRécapitulatif() { const siren = useSelector( (state: RootState) => state.inFranceApp.existingCompany?.siren ) + console.log(situation) const componentRef = useRef(null) return (
@@ -41,7 +42,6 @@ export function AideDéclarationIndépendantsRécapitulatif() { dottedName={ "aide déclaration revenu indépendant 2019 . nature de l'activité" } - unit="text" /> {label} @@ -129,14 +129,12 @@ function SimpleField({ label, dottedName, unit }: SimpleFieldProps) { formatValue({ value: value || 0, language: 'fr', - unit: '€', + unit: unit, maximumFractionDigits: 0 })} - {value !== null && unit === 'text' && ' : ' + value} + {value !== null && unit === undefined && ' : ' + value}

- ) : ( - <> - ) + ) : null }