Skip to content

Commit

Permalink
fix: Replace transaction with 0 nonce (#2361)
Browse files Browse the repository at this point in the history
  • Loading branch information
usame-algan authored Aug 8, 2023
1 parent 425cf08 commit 7eedd71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/transactions/RejectTxButton/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const RejectTxButton = ({
const tooltipTitle = getTxButtonTooltip('Replace', { hasSafeSDK: !!safeSDK })

const openReplacementModal = () => {
if (!txNonce) return
if (txNonce === undefined) return
setTxFlow(<ReplaceTxMenu txNonce={txNonce} />)
}

Expand Down

0 comments on commit 7eedd71

Please sign in to comment.