You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
streakMessage=`**${username}** has solved a problem for ${streakInfo.consecutiveDays} consecutive days! Keep it up!`;
221
+
if(streakInfo>0){
222
+
if(hasSolvedToday){
223
+
streakMessage=`🎉 **${username}** has solved a problem for ${streakInfo} consecutive days! Great work, keep it up! 💪`;
224
+
}else{
225
+
streakMessage=`⚠️ **${username}** has solved a problem for ${streakInfo} consecutive days! Solve today's problem to maintain your streak and prevent it from resetting! 🔄`;
226
+
}
187
227
}else{
188
-
streakMessage=`**${username}** does not have a streak yet. Start solving problems to build your streak!`;
189
-
}
228
+
streakMessage=`❌ **${username}** does not have a streak yet. Start solving problems today to build your streak! 🚀`;
0 commit comments