Skip to content

Commit

Permalink
fix(mobile): trash sorting order (immich-app#13299)
Browse files Browse the repository at this point in the history
* fix: trash sorting order

* updated after comparing with web
  • Loading branch information
yashrajjain726 authored and Yosi Taguri committed Oct 16, 2024
1 parent 6122ad3 commit 6a9831e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mobile/lib/providers/trash.provider.dart
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,6 @@ final trashedAssetsProvider = StreamProvider<RenderList>((ref) {
.filter()
.ownerIdEqualTo(user.isarId)
.isTrashedEqualTo(true)
.sortByFileCreatedAt();
.sortByFileCreatedAtDesc();
return renderListGeneratorWithGroupBy(query, GroupAssetsBy.none);
});

0 comments on commit 6a9831e

Please sign in to comment.