Removed Browsers AutoSuggestions from inputs (#1156)

I modified it from UI because every text input was suggesting autoComplete
This commit is contained in:
Aditya 2023-08-02 14:21:20 -04:00 committed by GitHub
parent 6c9e08540f
commit d8bd3075ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -86,6 +86,7 @@ export const Input = forwardRef<HTMLInputElement, InputProps>(
e.stopPropagation();
}}
ref={ref}
autoComplete={props.autoComplete || "off"}
{...props}
/>
</div>