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 d899176 commit 95e68bdCopy full SHA for 95e68bd
lib/router/router.dart
@@ -775,16 +775,14 @@ GoRouter createRouter({
775
);
776
},
777
),
778
- // Route for managing saved filters.
779
- GoRoute(
780
- path: Routes.accountSavedFilters,
781
- name: Routes.accountSavedFiltersName,
782
- builder: (context, state) {
783
- return const SavedFiltersPage();
784
- },
785
- ),
786
],
787
+ // Route for managing saved filters.
+ GoRoute(
+ path: Routes.accountSavedFilters,
+ name: Routes.accountSavedFiltersName,
+ builder: (context, state) => const SavedFiltersPage(),
+ ),
788
789
790
0 commit comments