From 0dbb662b4c243ddb540545ee6638de7f34d6fe43 Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Sat, 9 May 2026 16:07:19 -0400 Subject: [PATCH] feat(flutter): search no-results copy mirrors design-system voice MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Follow-up to ccebd98 — the search_screen edit failed in that commit because the file hadn't been read in the session. "No matches." → "No matches for that query." Same scope as the larger sweep commit. Co-Authored-By: Claude Opus 4.7 (1M context) --- flutter_client/lib/search/search_screen.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flutter_client/lib/search/search_screen.dart b/flutter_client/lib/search/search_screen.dart index 40874fbe..6b4728b0 100644 --- a/flutter_client/lib/search/search_screen.dart +++ b/flutter_client/lib/search/search_screen.dart @@ -88,7 +88,7 @@ class _SearchScreenState extends ConsumerState { data: (r) => r == null ? const _Hint(message: 'Type to search your library.') : r.isEmpty - ? const _Hint(message: 'No matches.') + ? const _Hint(message: 'No matches for that query.') : _Results(results: r), ), );