We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e26e4b commit a2d591bCopy full SHA for a2d591b
src/app/features/home/capture-tab/capture-tab.component.ts
@@ -94,7 +94,9 @@ export class CaptureTabComponent implements OnInit {
94
);
95
96
readonly captures$ = this.proofs$.pipe(
97
- map(proofs => proofs.sort((a, b) => b.timestamp - a.timestamp))
+ map(proofs =>
98
+ proofs.sort((a, b) => b.uploadedAtOrTimestamp - a.uploadedAtOrTimestamp)
99
+ )
100
101
102
readonly networkConnected$ = this.networkService.connected$;
0 commit comments