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
This commit is contained in:
Ady Beraud
2024-05-14 18:59:48 +03:00
committed by GitHub
parent 1a61405491
commit 0b1f646b72
3 changed files with 41 additions and 2 deletions

View File

@ -1,3 +1,3 @@
export const formatNumberOfStars = (numberOfStars: number) => {
return Math.ceil(numberOfStars / 100) / 10 + 'k';
return Math.round(numberOfStars / 100) / 10 + 'k';
};