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:
@@ -34,17 +34,6 @@
|
|||||||
(oldRating === undefined || oldRating === null || (oldRating >= 0 && oldRating <= 18))
|
(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 tierInfo = $derived(formatPremierRating(rating));
|
||||||
const changeInfo = $derived(showChange ? getPremierRatingChange(oldRating, rating) : null);
|
const changeInfo = $derived(showChange ? getPremierRatingChange(oldRating, rating) : null);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user