From 7cd79bce68674fc1c701aaef427698943b07d8e6 Mon Sep 17 00:00:00 2001 From: MingNian <1281442923@qq.com> Date: Wed, 3 Jun 2026 20:26:33 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=88=A0=E9=99=A4=E9=87=8D=E5=A4=8D?= =?UTF-8?q?=E7=9A=84=20exerciseServiceProvider=20=E5=AE=9A=E4=B9=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- health_app/lib/providers/data_providers.dart | 4 ---- 1 file changed, 4 deletions(-) diff --git a/health_app/lib/providers/data_providers.dart b/health_app/lib/providers/data_providers.dart index 755118d..21d88f1 100644 --- a/health_app/lib/providers/data_providers.dart +++ b/health_app/lib/providers/data_providers.dart @@ -27,10 +27,6 @@ final consultationServiceProvider = Provider((ref) { return ConsultationService(ref.watch(apiClientProvider)); }); -final exerciseServiceProvider = Provider((ref) { - return ExerciseService(ref.watch(apiClientProvider)); -}); - /// 最新健康数据 Provider final latestHealthProvider = FutureProvider>((ref) async { final service = ref.watch(healthServiceProvider);