1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-19 04:22:55 +08:00

Remove tier-based colour from the condensed piece to match web

This commit is contained in:
Salman Ahmed 2024-07-30 06:36:02 +03:00
parent 78417db06d
commit 9868fb4aaa

View File

@ -102,7 +102,6 @@ namespace osu.Game.Overlays.Profile.Header.Components
var statistics = User.Value.User.DailyChallengeStatistics;
// dailyStreak.Text = UsersStrings.ShowDailyChallengeUnitDay(statistics.DailyStreakCurrent);
dailyStreak.Text = $"{statistics.DailyStreakCurrent}d";
dailyStreak.Colour = colours.ForRankingTier(DailyChallengeStreakTooltip.TierForDaily(statistics.DailyStreakCurrent));
TooltipContent = new DailyChallengeStreakTooltipData(colourProvider, statistics);
}