diff --git a/src/lib/components/ui/PremierRatingBadge.svelte b/src/lib/components/ui/PremierRatingBadge.svelte index 4336c84..0483bad 100644 --- a/src/lib/components/ui/PremierRatingBadge.svelte +++ b/src/lib/components/ui/PremierRatingBadge.svelte @@ -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);