Kann nicht `schmutzig zu String zwingen, weil Boolean [1] nicht gezwungen werden sollte.

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