diff --git a/src/components/AccountStreak/AccountStreak.tsx b/src/components/AccountStreak/AccountStreak.tsx index 9ffd87bc9..306d660ec 100644 --- a/src/components/AccountStreak/AccountStreak.tsx +++ b/src/components/AccountStreak/AccountStreak.tsx @@ -177,14 +177,6 @@ export function AccountStreak(props: AccountStreakProps) {
Visit every day to keep your streak going!
-- - See how you compare to others - -
- 🥳 You have invited{' '} - - {refByUserCount} users so far - + {refByUserCount > 0 && ( + <> + 🥳 You have invited{' '} + + {refByUserCount} user{refByUserCount > 1 ? 's' : ''} so far + + > + )} + {refByUserCount === 0 && <>🤔 You haven't invited anyone yet>}
- - See how you are compare to others - + ); }