Skip to content

Commit e987ab5

Browse files
update: back the refresh interval from 850ms to 1s
1 parent 4628499 commit e987ab5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/providers/system_resources_provider.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ class SystemResourcesNotifier extends StateNotifier<SystemResources> {
6060
if (_refreshTimer != null) return;
6161

6262
_refreshTimer = Timer.periodic(
63-
const Duration(milliseconds: 850),
63+
const Duration(seconds: 1),
6464
(_) async => await _fetchResourceUsage()
6565
);
6666
}

0 commit comments

Comments
 (0)