diff --git a/packages/suite/src/hooks/wallet/useRbfForm.ts b/packages/suite/src/hooks/wallet/useRbfForm.ts index dbc5bc03c50..44e03264fb4 100644 --- a/packages/suite/src/hooks/wallet/useRbfForm.ts +++ b/packages/suite/src/hooks/wallet/useRbfForm.ts @@ -67,7 +67,7 @@ const useRbfState = ({ tx, finalize, chainedTxs }: Props, currentState: boolean) const { account, network } = state.selectedAccount; const feeInfo = getFeeInfo(account.networkType, state.fees[account.symbol], tx.rbfParams); // exclude utxo generated by this transaction. reduce output instead - const otherUtxo = account.utxo!.filter(input => input.txid !== tx.rbfParams!.txid); + const otherUtxo = (account.utxo || []).filter(input => input.txid !== tx.rbfParams!.txid); // override Account data const rbfAccount = {