fix(mobile): archive desc sorting (#7822)

desc sort
pull/7844/head
Ghazi Tounsi 2024-03-11 03:15:34 +07:00 committed by GitHub
parent e5978981f3
commit 49d9051879
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

@ -17,6 +17,6 @@ final archiveProvider = StreamProvider<RenderList>((ref) {
.filter()
.isArchivedEqualTo(true)
.isTrashedEqualTo(false)
.sortByFileCreatedAt();
.sortByFileCreatedAtDesc();
return renderListGenerator(query, ref);
});