Skip to content

Commit

Permalink
fix(mobile): reverse order of transactions (#13820)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nodonisko authored Aug 15, 2024
1 parent 6d647cf commit 2fa5ac5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ const sortKeysPendingFirst = (a: string, b: string) => {
const dateA = new Date(a);
const dateB = new Date(b);

return dateA.getTime() - dateB.getTime();
return dateB.getTime() - dateA.getTime();
};

const sortPendingTransactions = (a: WalletAccountTransaction, b: WalletAccountTransaction) => {
Expand Down

0 comments on commit 2fa5ac5

Please sign in to comment.