Skip to content

Commit

Permalink
fix: extra set of brackets in generate_head_metadata (#1811)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sirius902 authored Sep 29, 2023
1 parent 7378b85 commit 321c522
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meta/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ impl MetaContext {
#[cfg(feature = "ssr")]
pub fn generate_head_metadata() -> String {
let (head, body) = generate_head_metadata_separated();
format!("{head}</head><{body}>")
format!("{head}</head>{body}")
}

/// Extracts the metadata that should be inserted at the beginning of the `<head>` tag
Expand Down

0 comments on commit 321c522

Please sign in to comment.