Skip to content

Commit 62d7fd2

Browse files
author
Gianmarco Manni
committed
x
1 parent 830be05 commit 62d7fd2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/lib/components/TelephoneNumberInput/TelephoneNumberAutocomplete.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const TelephoneNumberAutocomplete = <T extends FieldValues>(props: TelephoneNumb
4949
sx={{ ...(useBootstrapStyle && textFieldBootstrapStyle), width: 200 }}
5050
onInputChange={(_, _value, reason) => {
5151
if (reason === "clear") {
52-
setIsOpen(true);
52+
setTimeout(() => setIsOpen(true), 200);
5353
}
5454
}}
5555
onChange={(_, value, reason) => {

0 commit comments

Comments
 (0)