This reverts commit 6bbc63cbc797db489172f54e46f2acef447d0a32.
@@ -155,11 +155,9 @@ class _CollectionActionSheetState extends State<CollectionActionSheet> {
prefixIcon: Icons.search_rounded,
autoFocus: true,
onChange: (value) {
- value != _searchQuery
- ? setState(() {
- _searchQuery = value;
- })
- : null;
+ setState(() {
+ _searchQuery = value;
+ });
},
cancellable: true,
shouldUnfocusOnCancelOrSubmit: true,