fix(mobile): show all places don't show all places ()

fix(mobile): show all places doesn't show all places
This commit is contained in:
Alex 2024-04-30 22:14:33 -05:00 committed by GitHub
parent f057fe045e
commit c0495ca23f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 46 additions and 15 deletions
mobile/lib/routing

View file

@ -138,10 +138,10 @@ abstract class _$AppRouter extends RootStackRouter {
),
);
},
CuratedLocationRoute.name: (routeData) {
AllPlacesRoute.name: (routeData) {
return AutoRoutePage<dynamic>(
routeData: routeData,
child: const CuratedLocationPage(),
child: const AllPlacesPage(),
);
},
FailedBackupStatusRoute.name: (routeData) {
@ -753,11 +753,11 @@ class CreateAlbumRouteArgs {
}
/// generated route for
/// [CuratedLocationPage]
class CuratedLocationRoute extends PageRouteInfo<void> {
const CuratedLocationRoute({List<PageRouteInfo>? children})
/// [AllPlacesPage]
class AllPlacesRoute extends PageRouteInfo<void> {
const AllPlacesRoute({List<PageRouteInfo>? children})
: super(
CuratedLocationRoute.name,
AllPlacesRoute.name,
initialChildren: children,
);