diff --git a/src/components/tx/NonceForm/index.tsx b/src/components/tx/NonceForm/index.tsx index a38a5b70df..d789821383 100644 --- a/src/components/tx/NonceForm/index.tsx +++ b/src/components/tx/NonceForm/index.tsx @@ -89,7 +89,7 @@ const NonceForm = ({ name, nonce, recommendedNonce, readonly }: NonceFormProps): const label = fieldState.error?.message || nonceWarning || 'Safe transaction nonce' const onResetNonce = () => { - if (recommendedNonce) { + if (recommendedNonce != null) { setValue(name, recommendedNonce, { shouldValidate: true }) } }