Bug
Minor UI bug. If you're viewing search results (an active filter) and then record a new note, the new note may not match the filter, so it's hidden from the list. It can look like the note didn't save, even though it did.
Cause
ContentView.searchText (ContentView.swift:16) drives .searchable (:31) and is passed into NotesListView(searchText:).
NotesListView.filteredNotes (NotesListView.swift:14) filters allNotes by that text. A freshly recorded note whose transcript doesn't contain the query is excluded from the list, with no indication that a filter is hiding it.
Proposed fixes (either)
Second option is the simpler, more direct fix.
From field-trial notes, 2026-06-12.
Bug
Minor UI bug. If you're viewing search results (an active filter) and then record a new note, the new note may not match the filter, so it's hidden from the list. It can look like the note didn't save, even though it did.
Cause
ContentView.searchText(ContentView.swift:16) drives.searchable(:31) and is passed intoNotesListView(searchText:).NotesListView.filteredNotes(NotesListView.swift:14) filtersallNotesby that text. A freshly recorded note whose transcript doesn't contain the query is excluded from the list, with no indication that a filter is hiding it.Proposed fixes (either)
ContentView.searchTexton record start/finish so the new note is visible in the list.Second option is the simpler, more direct fix.
From field-trial notes, 2026-06-12.