Merge branch 'develop' into fix/enter
This commit is contained in:
@@ -67,6 +67,15 @@ export const CompleteSignUp = ({
|
||||
}
|
||||
};
|
||||
|
||||
const handleChange = (e: React.ChangeEvent<HTMLInputElement>) => {
|
||||
let newValue = e.target.value;
|
||||
if (newValue.startsWith('09')) {
|
||||
newValue = newValue.substring(1);
|
||||
}
|
||||
|
||||
setValue(newValue);
|
||||
};
|
||||
|
||||
return (
|
||||
<AuthenticationCard>
|
||||
<Box
|
||||
|
||||
Reference in New Issue
Block a user