Change scanner status label "Not yet started" to "Not started"

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
rzuasti
2026-06-01 19:25:26 -04:00
co-authored by Claude Opus 4.8
parent 08ee4fc0ea
commit abeba88fec
5 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -44,6 +44,6 @@ class ArpScannerCard extends StatelessWidget {
sublabels: ['Next run in ${formatSeconds(remaining)}'],
);
}
return (color: neutralColor, label: 'Not yet started', sublabels: []);
return (color: neutralColor, label: 'Not started', sublabels: []);
}
}