From 12115198b7b5520a6402c7c446e09ea7275b122a Mon Sep 17 00:00:00 2001 From: vikingowl Date: Wed, 12 Nov 2025 23:44:07 +0100 Subject: [PATCH] chore: Remove debug logging from PremierRatingBadge MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- src/lib/components/ui/PremierRatingBadge.svelte | 11 ----------- 1 file changed, 11 deletions(-) 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);