In different parts of the app (for example [here](https://github.com/covidgreen/covid-green-app/blob/current/src/components/organisms/covid-stats.tsx#L38), [here](https://github.com/covidgreen/covid-green-app/blob/current/src/components/organisms/covid-stats.tsx#L52) and [here](https://github.com/covidgreen/covid-green-app/blob/current/src/components/views/county-breakdown.tsx#L65)) the following line of code is used to format numbers: ```TS new Intl.NumberFormat('en-IE').format(<value>) ``` We should: - remove the hardcoded `en-IE` locale and read the current used by the app so that the numbers can be formatted accordingly - extract a `formatNumber` to reduce duplication.