diff --git a/app/lib/utils/custom_search_delegate.dart b/app/lib/utils/custom_search_delegate.dart
index 09886e07a28751863ca4e73e64d944ea59355276..68de8856cd65760145e2996d6f9915de9ccdd671 100644
--- a/app/lib/utils/custom_search_delegate.dart
+++ b/app/lib/utils/custom_search_delegate.dart
@@ -69,7 +69,9 @@ class CustomSearchDelegate extends SearchDelegate {
             title: Text(result),
             onTap: () {
               onResultSelected(result);
-              close(context, result);
+              Future.delayed(const Duration(milliseconds: 1500), () {
+                close(context, result);
+              });
             },
           );
         }