Skip to content

Commit 09d6c11

Browse files
committed
refactor(router): move saved filters route under account section
1 parent c00b19e commit 09d6c11

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

lib/router/router.dart

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -594,14 +594,6 @@ GoRouter createRouter({
594594
);
595595
},
596596
),
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-
),
605597
],
606598
),
607599
],
@@ -783,6 +775,14 @@ GoRouter createRouter({
783775
);
784776
},
785777
),
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+
),
786786
],
787787
),
788788
],

0 commit comments

Comments
 (0)