Skip to content

Commit

Permalink
Merge pull request #570 from near-daos/fix/proposal-gas-validation
Browse files Browse the repository at this point in the history
fix(proposal gas): fix validation for gas input
  • Loading branch information
karpovdmitryod authored Feb 1, 2022
2 parents 123a5b8 + 07a67ad commit 78dfe94
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export const TransactionDetailsWidget: React.FC<CreateProposalWidgetProps> = ({
}

return (
<form onSubmit={handleSubmit(onSubmit)}>
<form onSubmit={handleSubmit(onSubmit)} noValidate>
<div className={cn(styles.root, { [styles.wholeCard]: standAloneMode })}>
{renderWarning()}
<div className={styles.mainContent}>
Expand Down

0 comments on commit 78dfe94

Please sign in to comment.