Here's a piece of code to reproduce:
let a = None;
let thing =
  switch (a) {
  | None => "error"
  | Some(fahrenheit) => "Unreasonably long string string string stringgggggggggggggg"
  };
 
Expected:
let a = None;
let thing =
  switch (a) {
  | None => "error"
  | Some(fahrenheit) => 
    "Unreasonably long string string string stringgggggggggggggg"
  };
 
Melange playground link