From 8340501f3786d67907cc9ab30b927ea83d97c1be Mon Sep 17 00:00:00 2001 From: petegregoryy Date: Fri, 23 Jan 2026 18:24:34 +0000 Subject: [PATCH] make carousel more stable --- lib/services/data_service/data_service_badges.dart | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/services/data_service/data_service_badges.dart b/lib/services/data_service/data_service_badges.dart index 629ad09..7456a73 100644 --- a/lib/services/data_service/data_service_badges.dart +++ b/lib/services/data_service/data_service_badges.dart @@ -55,7 +55,6 @@ extension DataServiceBadges on DataService { bool onlyIncomplete = false, }) async { _isClassClearanceProgressLoading = true; - if (!append) _classClearanceProgress = []; try { final onlyIncompleteParam = onlyIncomplete ? '&only_incomplete=true' : ''; @@ -84,7 +83,6 @@ extension DataServiceBadges on DataService { _classClearanceHasMore = items.length >= limit; } catch (e) { debugPrint('Failed to fetch class clearance progress: $e'); - if (!append) _classClearanceProgress = []; _classClearanceHasMore = false; } finally { _isClassClearanceProgressLoading = false;