Fix dashboard data requests, update dashboard data handling, change login field type, and redesign home button

This commit is contained in:
Ehsan
2025-06-12 21:46:27 +03:30
parent bf64271d14
commit eea8737778
8 changed files with 81 additions and 31 deletions
+2 -1
View File
@@ -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)) {