diff --git a/src/features/profile/components/userInformation/phoneNumber/PhoneEditForm.tsx b/src/features/profile/components/userInformation/phoneNumber/PhoneEditForm.tsx index f8acdca..1cde202 100644 --- a/src/features/profile/components/userInformation/phoneNumber/PhoneEditForm.tsx +++ b/src/features/profile/components/userInformation/phoneNumber/PhoneEditForm.tsx @@ -45,7 +45,6 @@ export default function PhoneEditForm({ const handleChange = (event: ChangeEvent) => { const value = replacePersianWithRealNumbers(event.target.value); - console.log(value); setPhoneNumber(value); };