Merged in fix/translations-my-points (pull request #1324)

Fix/translations my points

* feat: my points - fixed translations

* feat: my points - fixed translations

* Revert test script
This commit is contained in:
Linus Flood
2025-02-12 14:32:29 +00:00
parent 1532898c23
commit cac090df34

View File

@@ -24,10 +24,10 @@ export default function Row({ transaction }: RowProps) {
const nightsMsg = intl.formatMessage(
{
id: "{nightsAmount, plural, one {# night} other {# nights}}",
id: "{totalNights, plural, one {# night} other {# nights}}",
},
{
nightsAmount: transaction.nights,
totalNights: transaction.nights,
}
)