Skip to content

Commit

Permalink
Fix ci "needless borrow" error
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-hansen committed Mar 1, 2024
1 parent 59d3cce commit 23a23b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integrations/utils/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ pub fn html_parts_separated(
"() => mod.hydrate()"
};

let (js_hash, wasm_hash, css_hash) = get_hashes(&options);
let (js_hash, wasm_hash, css_hash) = get_hashes(options);

let head = head.replace(
&format!("{output_name}.css"),
Expand Down

0 comments on commit 23a23b7

Please sign in to comment.