diff --git a/src/routes/safe/components/Balances/SendModal/screens/ReviewCustomTx/index.jsx b/src/routes/safe/components/Balances/SendModal/screens/ReviewCustomTx/index.jsx
index 2a8c6d80..a78d959f 100644
--- a/src/routes/safe/components/Balances/SendModal/screens/ReviewCustomTx/index.jsx
+++ b/src/routes/safe/components/Balances/SendModal/screens/ReviewCustomTx/index.jsx
@@ -116,8 +116,8 @@ const ReviewCustomTx = ({
- {tx.value}
- {'ETH'}
+ {tx.value || 0}
+ {' ETH'}
diff --git a/src/routes/safe/components/Balances/SendModal/screens/SendCustomTx/index.jsx b/src/routes/safe/components/Balances/SendModal/screens/SendCustomTx/index.jsx
index 9aba3543..d1c9e8d5 100644
--- a/src/routes/safe/components/Balances/SendModal/screens/SendCustomTx/index.jsx
+++ b/src/routes/safe/components/Balances/SendModal/screens/SendCustomTx/index.jsx
@@ -20,7 +20,6 @@ import {
composeValidators,
mustBeFloat,
maxValue,
- greaterThan,
} from '~/components/forms/validator'
import SafeInfo from '~/routes/safe/components/Balances/SendModal/SafeInfo'
import ArrowDown from '../assets/arrow-down.svg'
@@ -126,7 +125,6 @@ const SendCustomTx = ({
type="text"
validate={composeValidators(
mustBeFloat,
- greaterThan(0),
maxValue(ethBalance),
)}
placeholder="Value*"