From b3fac5d82dd3ab9c0e4ff36531febcbbff590f49 Mon Sep 17 00:00:00 2001 From: Admin Date: Wed, 27 May 2026 20:37:54 +0500 Subject: [PATCH] fix: disable spellcheck and autocorrect on form inputs --- frontend/src/pages/home/components/PricingSection.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/frontend/src/pages/home/components/PricingSection.tsx b/frontend/src/pages/home/components/PricingSection.tsx index a6b38f5..34efa3b 100644 --- a/frontend/src/pages/home/components/PricingSection.tsx +++ b/frontend/src/pages/home/components/PricingSection.tsx @@ -122,6 +122,9 @@ export default function PricingSection() { placeholder="Ваше имя" required disabled={loading} + autoComplete="off" + autoCorrect="off" + spellCheck={false} className="px-5 py-3.5 bg-cream border border-greigeDark/50 rounded-full text-sm font-sans text-warmBrown placeholder:text-mutedBrown/50 focus:outline-none focus:border-taupe transition-colors w-64 disabled:opacity-60" /> setPhone(formatPhone(e.target.value))} + autoComplete="off" + autoCorrect="off" + spellCheck={false} className="px-5 py-3.5 bg-cream border border-greigeDark/50 rounded-full text-sm font-sans text-warmBrown placeholder:text-mutedBrown/50 focus:outline-none focus:border-taupe transition-colors w-64 disabled:opacity-60" />