Had the same problem, just added .id(UUID()) as list modifier to disable animation and fix my issue.
This worked for me:
...
List {
ForEach(filteredThings, id: \.self) { item in
itemRow(item: item, matched: $matched)
}
}.id(UUID())
...