diff --git a/src/components/organisms/Header/Header.tsx b/src/components/organisms/Header/Header.tsx index 5039857ae..2a629b731 100644 --- a/src/components/organisms/Header/Header.tsx +++ b/src/components/organisms/Header/Header.tsx @@ -265,11 +265,11 @@ const PointsTag = ({ if (points) { if (points < 1000) { - pointsDisplay = `${points} points`; + pointsDisplay = `${points} Points`; } else if (points < 1000000) { - pointsDisplay = `${Math.floor(points / 100) / 10}K points`; + pointsDisplay = `${Math.floor(points / 100) / 10}K Points`; } else { - pointsDisplay = `${Math.floor(points / 100000) / 10}M points`; + pointsDisplay = `${Math.floor(points / 100000) / 10}M Points`; } } @@ -286,7 +286,7 @@ const PointsTag = ({ )} diff --git a/src/utils/links.tsx b/src/utils/links.tsx index 5152cd0ff..c3ba447d5 100644 --- a/src/utils/links.tsx +++ b/src/utils/links.tsx @@ -33,7 +33,7 @@ export const LinkList: ExternalLink[] = [ }, { text: 'Join us on Discord', - href: 'https://discord.com/invite/FqrdfQgmjT', + href: 'https://discord.gg/3kytCrv3qY', icon: , }, ];