From ef1393e35d6629eae86726fc2715ca0f81fa8689 Mon Sep 17 00:00:00 2001 From: Dr-Blank <64108942+Dr-Blank@users.noreply.github.com> Date: Mon, 30 Sep 2024 02:19:16 -0400 Subject: [PATCH] refactor: comment out notifyListeners call in restartTimer method for clarity --- lib/features/sleep_timer/providers/sleep_timer_provider.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/features/sleep_timer/providers/sleep_timer_provider.dart b/lib/features/sleep_timer/providers/sleep_timer_provider.dart index c4c8912..92e5eb8 100644 --- a/lib/features/sleep_timer/providers/sleep_timer_provider.dart +++ b/lib/features/sleep_timer/providers/sleep_timer_provider.dart @@ -54,7 +54,7 @@ class SleepTimer extends _$SleepTimer { void restartTimer() { state?.restartTimer(); - // ref.notifyListeners(); + // ref.notifyListeners(); // see https://github.com/Dr-Blank/Vaani/pull/40 for more information on why this is commented out } void cancelTimer() {