chore: clippy

This commit is contained in:
Greg Johnston 2024-07-24 09:22:20 -04:00
parent 43421c56d5
commit 6a705e2a21
5 changed files with 9 additions and 7 deletions

View file

@ -122,7 +122,7 @@ where
_buf: &mut String,
_position: &mut Position,
_escape: bool,
mark_branches: bool,
_mark_branches: bool,
) {
if let Some(meta) = use_context::<ServerMetaContext>() {
let mut buf = String::new();

View file

@ -122,7 +122,7 @@ where
_buf: &mut String,
_position: &mut Position,
_escape: bool,
mark_branches: bool,
_mark_branches: bool,
) {
if let Some(meta) = use_context::<ServerMetaContext>() {
let mut buf = String::new();

View file

@ -439,7 +439,7 @@ where
_buf: &mut String,
_position: &mut Position,
_escape: bool,
mark_branches: bool,
_mark_branches: bool,
) {
// meta tags are rendered into the buffer stored into the context
// the value has already been taken out, when we're on the server
@ -549,7 +549,7 @@ impl RenderHtml<Dom> for MetaTagsView {
buf: &mut String,
_position: &mut Position,
_escape: bool,
mark_branches: bool,
_mark_branches: bool,
) {
buf.push_str("<!--HEAD-->");
}

View file

@ -250,7 +250,7 @@ impl RenderHtml<Dom> for TitleView {
_buf: &mut String,
_position: &mut Position,
_escape: bool,
mark_branches: bool,
_mark_branches: bool,
) {
// meta tags are rendered into the buffer stored into the context
// the value has already been taken out, when we're on the server

View file

@ -1,6 +1,8 @@
#[cfg(feature = "ssr")]
use super::MarkBranch;
use super::{
add_attr::AddAnyAttr, MarkBranch, Mountable, Position, PositionState,
Render, RenderHtml,
add_attr::AddAnyAttr, Mountable, Position, PositionState, Render,
RenderHtml,
};
use crate::{
html::attribute::Attribute, hydration::Cursor, renderer::Renderer,