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 }