Solucionado (ver solução)
Solucionado
(ver solução)
1
resposta

Erro ao tentar deletar uma tr

pacientesTable.forEach(tr => {
    tr.addEventListener("dblclick",(event)=>{
        this.remove()
    })

Após o duplo click eu recebo o seguinte erro:

Uncaught TypeError: this.remove is not a function
    at HTMLTableSectionElement.<anonymous> (removerPaciente.js:5)
1 resposta
solução!

Fala ai João, tudo bem? O problema ocorre por conta do contexto de this, tente mudar a arrow function para função normal:

pacientesTable.forEach(tr => {
    tr.addEventListener("dblclick", function (event) {
        this.remove()
    })

Acredito que possa resolver o problema.

Espero ter ajudado.