Skip to content

Commit ea81f68

Browse files
committed
fix(headlines-feed): update countries filter sort option
- Change sort option from 'updatedAt' to 'name' - Update sort order from descending to ascending
1 parent 8cdad52 commit ea81f68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/headlines-feed/bloc/countries_filter_bloc.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ class CountriesFilterBloc
8686
limit: _countriesLimit,
8787
cursor: state.cursor,
8888
),
89-
sort: [const SortOption('updatedAt', SortOrder.desc)],
89+
sort: [const SortOption('name', SortOrder.asc)],
9090
);
9191
emit(
9292
state.copyWith(

0 commit comments

Comments
 (0)