fix double quotes in autoformatting

This commit is contained in:
Evan Almloff 2023-09-14 16:19:21 -05:00
parent be4b0c801a
commit 1a17ca988c
2 changed files with 2 additions and 2 deletions

View file

@ -215,7 +215,7 @@ impl Writer<'_> {
write!(self.out, "{}", name)?;
}
ElementAttrName::Custom(name) => {
write!(self.out, "\"{}\"", name.to_token_stream())?;
write!(self.out, "{}", name.to_token_stream())?;
}
}

View file

@ -33,7 +33,7 @@ rsx! {
}
// No children, minimal props
img { class: "mb-6 mx-auto h-24", src: "artemis-assets/images/friends.png", alt: "" }
img { class: "mb-6 mx-auto h-24", src: "artemis-assets/images/friends.png" }
// One level compression
div {