Commit 551270e7 authored by Igor Stuev's avatar Igor Stuev Committed by GitHub

fix tx socket sorting (#2760)

parent b63014ea
...@@ -26,7 +26,7 @@ export default function sortTxs(sorting: TransactionsSortingValue | undefined) { ...@@ -26,7 +26,7 @@ export default function sortTxs(sorting: TransactionsSortingValue | undefined) {
} }
export function sortTxsFromSocket(sorting: TransactionsSortingValue | undefined) { export function sortTxsFromSocket(sorting: TransactionsSortingValue | undefined) {
if (sorting) { if (sorting && sorting !== 'default') {
return sortTxs(sorting); return sortTxs(sorting);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment