Skip to content

Commit 551270e

Browse files
authored
fix tx socket sorting (#2760)
1 parent b63014e commit 551270e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/txs/sortTxs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export default function sortTxs(sorting: TransactionsSortingValue | undefined) {
2626
}
2727

2828
export function sortTxsFromSocket(sorting: TransactionsSortingValue | undefined) {
29-
if (sorting) {
29+
if (sorting && sorting !== 'default') {
3030
return sortTxs(sorting);
3131
}
3232

0 commit comments

Comments
 (0)