Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16782 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 16782 Rev 16783
Línea 82... Línea 82...
82
      if (!success) {
82
      if (!success) {
83
        console.log('Error in entity close')
83
        console.log('Error in entity close')
84
        return
84
        return
85
      }
85
      }
Línea 86... Línea -...
86
 
-
 
87
      setActiveChats(
-
 
88
        activeChats.filter(
86
 
89
          (prevActiveChats) => prevActiveChats.id !== entity.id
-
 
90
        )
-
 
91
      )
87
      setActiveChats(activeChats.filter((chat) => chat.id !== entity.id))
92
    })
88
    })
Línea 93... Línea 89...
93
  }
89
  }
94
 
90