diff --git a/src/components/Options/ReportOptions.tsx b/src/components/Options/ReportOptions.tsx
index 2fa99ed47c733088ed18f59fd51a57ccd14b6322..5a74cb99020ea89de6f4aaf77990b3bbae8f1cbb 100644
--- a/src/components/Options/ReportOptions.tsx
+++ b/src/components/Options/ReportOptions.tsx
@@ -150,7 +150,11 @@ const ReportOptions: React.FC = () => {
                 <input
                   className="input-style"
                   type={'number'}
-                  defaultValue={profile.waterDailyConsumptionLimit}
+                  defaultValue={
+                    profile.waterDailyConsumptionLimit === 0
+                      ? ''
+                      : profile.waterDailyConsumptionLimit
+                  }
                   onBlur={setWaterLimit}
                   aria-label={t(
                     'profile.accessibility.input_water_alert_report'