The compiler started adding empty strings around values in template literals. Technically doesn't break anything, but adds a redundant operation. Example: ```rescript Js.log(`${1->Js.Int.toString}${2->Js.Int.toString}`) ``` Output: ```javascript console.log("" + (1).toString() + "" + (2).toString() + ""); ``` Before: ```javascript console.log((1).toString() + (2).toString()); ``` Context: https://github.com/DZakh/rescript-struct/pull/1#discussion_r914182947, https://github.com/rescript-lang/rescript-compiler/issues/5514#issuecomment-1176231169