mirror of
https://github.com/immich-app/immich.git
synced 2025-11-20 08:42:35 +09:00
fix(mobile): recently added -> taken (#17780)
This commit is contained in:
@@ -1407,20 +1407,20 @@ class PlacesCollectionRouteArgs {
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [RecentlyAddedPage]
|
||||
class RecentlyAddedRoute extends PageRouteInfo<void> {
|
||||
const RecentlyAddedRoute({List<PageRouteInfo>? children})
|
||||
/// [RecentlyTakenPage]
|
||||
class RecentlyTakenRoute extends PageRouteInfo<void> {
|
||||
const RecentlyTakenRoute({List<PageRouteInfo>? children})
|
||||
: super(
|
||||
RecentlyAddedRoute.name,
|
||||
RecentlyTakenRoute.name,
|
||||
initialChildren: children,
|
||||
);
|
||||
|
||||
static const String name = 'RecentlyAddedRoute';
|
||||
static const String name = 'RecentlyTakenRoute';
|
||||
|
||||
static PageInfo page = PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const RecentlyAddedPage();
|
||||
return const RecentlyTakenPage();
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user