Fix phone input bug

This commit is contained in:
Charles Bochet
2024-01-09 18:48:59 +01:00
parent 69b558e03d
commit a9ac14439f

View File

@ -50,7 +50,7 @@ export const PhoneFieldInput = ({
}; };
const handleChange = (newText: string) => { const handleChange = (newText: string) => {
saveEditModeValue(newText); saveEditModeValue(newText ?? '');
}; };
return ( return (