Files
twenty/packages/twenty-website/src/shared-utils/formatNumberOfStars.ts
Ady Beraud 0b1f646b72 Added loader to Download Image + modified GitHub stars (#5407)
- Added loader to download image in contributor page:


https://github.com/twentyhq/twenty/assets/102751374/a6db1d80-01ed-4b07-9a57-e533012f5aa9

- Modified GitHub stars - rounded to the nearest integer
2024-05-14 17:59:48 +02:00

4 lines
120 B
TypeScript

export const formatNumberOfStars = (numberOfStars: number) => {
return Math.round(numberOfStars / 100) / 10 + 'k';
};