Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 5601 Rev 5603
Línea 121... Línea 121...
121
 
121
 
122
  const toggleConfirmModal = () => {
122
  const toggleConfirmModal = () => {
123
    setIsShowConfirm(!isShowConfirm)
123
    setIsShowConfirm(!isShowConfirm)
Línea 124... Línea 124...
124
  }
124
  }
125
 
125
 
126
  const deleteConversation = (url) => {
126
  const deleteConversation = () => {
Línea 127... Línea 127...
127
    axios.post(url).then(({ data: response }) => {
127
    axios.post('/inmail/delete').then(({ data: response }) => {
128
      const { success, data } = response
128
      const { success, data } = response
129
 
129