Skip to content

Commit

Permalink
fix(suite): ripple first page refetch
Browse files Browse the repository at this point in the history
  • Loading branch information
martykan committed Feb 24, 2025
1 parent a0affe1 commit 2034900
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,9 @@ export const fetchTransactionsPageThunk = createThunk(
details: 'txs',
page, // useful for every network except ripple
pageSize: perPage,
...(marker ? { marker } : {}), // set marker only if it is not undefined (ripple), otherwise it fails on marker validation
// set marker only if it is not undefined (ripple), otherwise it fails on marker validation
// if back on first page, the marker is reset
...(marker && !isFirstPage ? { marker } : {}),
suppressBackupWarning: true,
});

Expand Down

0 comments on commit 2034900

Please sign in to comment.