1
0
Fork 0
mirror of https://github.com/betagouv/mon-entreprise synced 2025-02-11 00:25:02 +00:00

fix(rgcp): ajoute un espace avant les avertissements mois par mois

This commit is contained in:
Alice Dahan 2025-01-16 12:13:59 +01:00 committed by liliced
parent 8eddccc68a
commit 5409f6aa27

View file

@ -254,7 +254,12 @@ export default function RéductionMoisParMois({
)}
</span>
{warnings}
{warnings && (
<>
<Spacing xxl />
{warnings}
</>
)}
</>
)
}