Skip to content

Commit

Permalink
fix: Recursion (#593)
Browse files Browse the repository at this point in the history
  • Loading branch information
fzavalia authored Mar 14, 2024
1 parent f194f3e commit 2723bad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/transaction/sagas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,12 @@ export function* transactionSaga(

function* handleFetchTransactionRequest(
action: FetchTransactionRequestAction
): unknown {
) {
const isCrossChain = isTransactionActionCrossChain(action.payload.action)
if (isCrossChain) {
yield call(handleCrossChainTransactionRequest, action, config)
} else {
yield call(handleFetchTransactionRequest, action)
yield call(handleRegularTransactionRequest, action)
}
}
}
Expand Down

0 comments on commit 2723bad

Please sign in to comment.