diff --git a/front/src/lib.rs b/front/src/lib.rs index bbea347..88202e2 100644 --- a/front/src/lib.rs +++ b/front/src/lib.rs @@ -12,7 +12,5 @@ pub fn main() -> Result<(), JsValue> { #[wasm_bindgen] pub fn format(before: String, path: String) -> String { - let config = alejandra_engine::config::Config::default(); - - alejandra_engine::format::string_or_passthrough(&config, path, before) + alejandra_engine::format::string_or_passthrough(path, before) }