1000 camera warning limit

This commit is contained in:
stopflock
2025-08-29 11:29:52 -05:00
parent c4c1505253
commit a437d9bf60
2 changed files with 1 additions and 3 deletions

View File

@@ -88,8 +88,6 @@ flutter run
## Roadmap
### Current Todo List
- **Performance**:
- 1000+ camera warning threshold for large datasets
- **UX Polish**:
- Fix "tiles loaded" indicator accuracy across different providers
- Generic tile provider error messages (not always "OSM tiles slow")

View File

@@ -29,7 +29,7 @@ class _MaxCamerasSectionState extends State<MaxCamerasSection> {
Widget build(BuildContext context) {
final appState = context.watch<AppState>();
final current = appState.maxCameras;
final showWarning = current > 250;
final showWarning = current > 1000;
return Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [