Fixed confirmation page and added comments

This commit is contained in:
2023-09-13 18:16:04 +01:00
parent 1e3a166172
commit f1ee5150a9
7 changed files with 218 additions and 191 deletions
@@ -25,6 +25,7 @@ export default function InputCom({
maxLength = 45,
minLength = 0,
direction,
tabIndex,
error,
}) {
const inputRef = useRef(null);
@@ -100,6 +101,7 @@ export default function InputCom({
onInput={onInput}
minLength={minLengthValidation()}
maxLength={maxLengthValidation()}
tabIndex={tabIndex}
// pattern={inputPatterns()}
ref={inputRef}
readOnly={disable}