diff --git a/index.html b/index.html
index a20131971..b00b8fbc6 100644
--- a/index.html
+++ b/index.html
@@ -222,7 +222,7 @@
style="margin: 100px auto; max-width: 800px; text-align: center; font-family: 'Montserrat', sans-serif; font-weight: 300;"
>
diff --git a/source/components/CurrencyInput/CurrencyInput.js b/source/components/CurrencyInput/CurrencyInput.js
index 0be897326..907db76a6 100644
--- a/source/components/CurrencyInput/CurrencyInput.js
+++ b/source/components/CurrencyInput/CurrencyInput.js
@@ -82,6 +82,7 @@ export default function CurrencyInput({
}}
onChange={handleChange}
value={currentValue.toString().replace('.', decimalSeparator)}
+ autoComplete="off"
/>
{!isCurrencyPrefixed && <> €>}
diff --git a/source/components/conversation/Input.js b/source/components/conversation/Input.js
index 9b96c7d79..b810ef6ae 100644
--- a/source/components/conversation/Input.js
+++ b/source/components/conversation/Input.js
@@ -60,6 +60,7 @@ export default compose(
debouncedSetFormValue(unit === '%' ? floatValue / 100 : floatValue)
}}
value={unit === '%' ? 100 * value : value}
+ autoComplete="off"
/>
{suffixed && (