Why cant i turned off autocomplete in texbox component? I try to again and again but nothing
<TextBoxComponent
placeholder='Email Confirmation'
floatLabelType='Auto'
autocomplete={'off'}
value={this.confirmEmail}
onChange={(e: any) => {
this.confirmEmail = e.value;
if (this.email === this.confirmEmail) {
this.setState({ ApplicationUserID: this.email });
}
}}
/>