Ne peut pas contraindre «sale» à la corde car booléen [1] ne doit pas être contraint.

//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