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 c00b19e commit 09d6c11Copy full SHA for 09d6c11
lib/router/router.dart
@@ -594,14 +594,6 @@ GoRouter createRouter({
594
);
595
},
596
),
597
- // Route for managing saved filters, now under the account section.
598
- GoRoute(
599
- path: Routes.accountSavedFilters,
600
- name: Routes.accountSavedFiltersName,
601
- builder: (context, state) {
602
- return const SavedFiltersPage();
603
- },
604
- ),
605
],
606
607
@@ -783,6 +775,14 @@ GoRouter createRouter({
783
775
784
776
785
777
778
+ // Route for managing saved filters.
779
+ GoRoute(
780
+ path: Routes.accountSavedFilters,
781
+ name: Routes.accountSavedFiltersName,
782
+ builder: (context, state) {
+ return const SavedFiltersPage();
+ },
+ ),
786
787
788
0 commit comments