Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 2630 | Rev 2860 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 2630 Rev 2802
Línea 20... Línea 20...
20
  const dispatch = useDispatch()
20
  const dispatch = useDispatch()
21
  const navigate = useNavigate()
21
  const navigate = useNavigate()
22
  const { uuid } = useParams()
22
  const { uuid } = useParams()
23
  const { site_key, aes } = useSelector(({ auth }) => auth)
23
  const { site_key, aes } = useSelector(({ auth }) => auth)
Línea -... Línea 24...
-
 
24
 
-
 
25
  const {
-
 
26
    control,
-
 
27
    handleSubmit,
24
 
28
    watch,
-
 
29
    formState: { errors }
25
  const { control, handleSubmit, errors, watch } = useForm({
30
  } = useForm({
26
    mode: 'all'
31
    mode: 'all'
Línea 27... Línea 32...
27
  })
32
  })
28
 
33