fix: remove additional console logs

This commit is contained in:
Sajad Mirjalili
2025-09-29 18:56:24 +03:30
parent aaf1a29277
commit 39587418a3

View File

@@ -45,7 +45,6 @@ export default function PhoneEditForm({
const handleChange = (event: ChangeEvent<HTMLInputElement>) => {
const value = replacePersianWithRealNumbers(event.target.value);
console.log(value);
setPhoneNumber(value);
};