diff --git a/lib/components/horizontal_stories_list.dart b/lib/components/horizontal_stories_list.dart index ac150031a..5436573f9 100644 --- a/lib/components/horizontal_stories_list.dart +++ b/lib/components/horizontal_stories_list.dart @@ -57,7 +57,7 @@ class _HorizontalStoriesListState extends State { p.senderId.toLowerCase().contains(widget.searchQuery.toLowerCase())) .toList(); return AnimatedContainer( - height: height, + height: contactList.isEmpty ? 0 : height, duration: Duration(milliseconds: 300), child: contactList.isEmpty ? null