Fix dashboard data requests, update dashboard data handling, change login field type, and redesign home button
This commit is contained in:
@@ -1,9 +1,10 @@
|
||||
function OTPForm({ index, value, onChange, inputRef, isError }) {
|
||||
return (
|
||||
<input
|
||||
ref={inputRef}
|
||||
type="tel"
|
||||
value={value}
|
||||
maxLength={1}
|
||||
ref={inputRef}
|
||||
onChange={(e) => {
|
||||
const val = e.target.value;
|
||||
if (/^\d?$/.test(val)) {
|
||||
|
||||
Reference in New Issue
Block a user