Fix importing transactions in wrong order

This commit is contained in:
2025-05-23 13:42:26 +02:00
parent cc208dd748
commit 1b6749ef53

View File

@@ -54,7 +54,7 @@ export default function PrepareTransactionsPage() {
return; return;
} }
const response = await submitTransactions(selectedTransactions, state.server, opts); const response = await submitTransactions(selectedTransactions.slice().reverse(), state.server, opts);
dispatch({ dispatch({
type: 'SET_RESULT', type: 'SET_RESULT',