We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9572f67 commit e74edf7Copy full SHA for e74edf7
lib/headlines-feed/view/headlines_feed_page.dart
@@ -110,8 +110,8 @@ class _HeadlinesFeedPageState extends State<HeadlinesFeedPage> {
110
// Check if any filter list is non-null and not empty
111
isFilterApplied =
112
(state.filter.categories?.isNotEmpty ?? false) ||
113
- (state.filter.sources?.isNotEmpty ?? false) ||
114
- (state.filter.eventCountries?.isNotEmpty ?? false);
+ (state.filter.sources?.isNotEmpty ?? false);
+ // (state.filter.eventCountries?.isNotEmpty ?? false); // Removed
115
}
116
return Stack(
117
children: [
0 commit comments