No se puede coaccionar `sucio para hacer una cuerda porque boolean [1] no debe ser coaccionado.

//this happens commonly when using flow
//you need to explicitly cast your boolean to string.
console.log(`this is ${String(true)}`) =>  //this is true
tinydev