🚧 Remove unnecessary whitespace

This commit is contained in:
Manuel Cillero 2024-03-16 08:18:57 +01:00
parent 544b56af07
commit b6b7d9687b
2 changed files with 2 additions and 2 deletions

View file

@ -141,7 +141,7 @@ impl MixedComponents {
components.sort_by_key(|c| c.weight());
html! {
@for c in components.iter() {
" " (c.render(cx)) " "
(c.render(cx))
}
}
}

View file

@ -134,7 +134,7 @@ impl<C: ComponentTrait + Default> TypedComponents<C> {
components.sort_by_key(|c| c.weight());
html! {
@for c in components.iter() {
" " (c.render(cx)) " "
(c.render(cx))
}
}
}