Skip to content

Commit

Permalink
Merge pull request #7 from bnb-chain/fix-send-bug
Browse files Browse the repository at this point in the history
fix:send bug
  • Loading branch information
constwz authored Nov 7, 2023
2 parents e6eb198 + 9230c56 commit 109ae91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/tx/SignOrExecuteForm/SignForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ const SignForm = ({
}

const cannotPropose = !isOwner
const submitDisabled = !safeTx || !isSubmittable || disableSubmit || cannotPropose
const submitDisabled = !isSubmittable || disableSubmit || cannotPropose

return (
<form onSubmit={handleSubmit}>
Expand Down

0 comments on commit 109ae91

Please sign in to comment.