From f403f0d897b4ec86bcc9adfb1f0600b0a71108e1 Mon Sep 17 00:00:00 2001 From: LHR <73415512+bLueriVerLHR@users.noreply.github.com> Date: Sat, 10 Aug 2024 21:11:58 +0800 Subject: [PATCH] fix typo in stats_repository.dart --- lib/features/stats/data/stats_repository.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/features/stats/data/stats_repository.dart b/lib/features/stats/data/stats_repository.dart index 49025344..c59024ad 100644 --- a/lib/features/stats/data/stats_repository.dart +++ b/lib/features/stats/data/stats_repository.dart @@ -24,7 +24,7 @@ class StatsRepositoryImpl (event) => StatsEntity( uplink: event.uplink, downlink: event.downlink, - uplinkTotal: event.downlink, + uplinkTotal: event.uplinkTotal, downlinkTotal: event.downlinkTotal, ), )