File tree Expand file tree Collapse file tree 2 files changed +1
-29
lines changed
Expand file tree Collapse file tree 2 files changed +1
-29
lines changed Original file line number Diff line number Diff line change @@ -539,31 +539,6 @@ GoRouter createRouter({
539539 );
540540 },
541541 ),
542- GoRoute (
543- path: Routes .feedFilterSourceCountries,
544- name: Routes .feedFilterSourceCountriesName,
545- pageBuilder: (context, state) {
546- final l10n = context.l10n;
547-
548- final initialSelection =
549- state.extra as List <Country >? ;
550- return MaterialPage (
551- fullscreenDialog: true ,
552- child: BlocProvider (
553- create: (context) => CountriesFilterBloc (
554- countriesRepository: context
555- .read <DataRepository <Country >>(),
556- ),
557- child: CountryFilterPage (
558- title:
559- l10n.headlinesFeedFilterSourceCountryLabel,
560- usage: 'headquarters' ,
561- key: ValueKey (initialSelection.hashCode),
562- ),
563- ),
564- );
565- },
566- ),
567542 ],
568543 ),
569544 ],
Original file line number Diff line number Diff line change @@ -19,10 +19,7 @@ abstract final class Routes {
1919 // New routes for country filtering
2020 static const feedFilterEventCountries = 'event-countries' ;
2121 static const feedFilterEventCountriesName = 'feedFilterEventCountries' ;
22-
23- static const feedFilterSourceCountries = 'source-countries' ;
24- static const feedFilterSourceCountriesName = 'feedFilterSourceCountries' ;
25-
22+
2623 static const search = '/search' ;
2724 static const searchName = 'search' ;
2825 static const account = '/account' ;
You can’t perform that action at this time.
0 commit comments