Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 6352 Rev 6353
Línea 28... Línea 28...
28
 
28
 
29
  const onSubmitHandler = async ({ hobbiesAndInterests }) => {
29
  const onSubmitHandler = async ({ hobbiesAndInterests }) => {
30
    setModalLoading(true)
30
    setModalLoading(true)
Línea -... Línea 31...
-
 
31
    const formData = new FormData()
-
 
32
 
31
    const formData = new FormData()
33
    console.log(hobbiesAndInterests)
32
 
34
 
33
    hobbiesAndInterests.map((language) =>
35
    hobbiesAndInterests.map((language) =>
Línea 34... Línea 36...
34
      formData.append('hobbies_and_interests[]', language)
36
      formData.append('hobbies_and_interests[]', language.value)
35
    )
37
    )
36
 
38
 
37
    axios
39
    axios
38
      .post(
40
      .post(
39
        `/profile/my-profiles/hobby-and-interest/${userIdEncrypted}`,
41
        `/profile/my-profiles/hobby-and-interest/${userIdEncrypted}`,
40
        formData
42
        formData
41
      )
43
      )
42
      .then(({ data: response }) => {
44
      .then(({ data: response }) => {
43
        const { data, success } = response
45
        const { data, success } = response
44
        if (!success) {
46
        if (!success) {
45
          const errorMessage = data.hobbiesAndInterests[0]
47
          const errorMessage = data.hobbies_and_interests[0]
Línea 46... Línea 48...
46
          dispatch(addNotification({ style: 'danger', msg: errorMessage }))
48
          dispatch(addNotification({ style: 'danger', msg: errorMessage }))