chore: Remove debug logging from PremierRatingBadge

Debug logging was added to troubleshoot rank detection logic.
Now that icons are working correctly, removing the console.log.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-11-12 23:44:07 +01:00
parent 2e053a6388
commit 12115198b7

View File

@@ -34,17 +34,6 @@
(oldRating === undefined || oldRating === null || (oldRating >= 0 && oldRating <= 18))
);
// Debug logging (temporary)
$effect(() => {
if (oldRating !== undefined || rating !== undefined) {
console.log('[PremierRatingBadge]', {
oldRating,
rating,
isLegacyRank
});
}
});
const tierInfo = $derived(formatPremierRating(rating));
const changeInfo = $derived(showChange ? getPremierRatingChange(oldRating, rating) : null);