From fee8b3d2a3341a2a2f31aab6d3656fe32cb3a9c0 Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Sun, 25 Jan 2026 10:29:56 -0300 Subject: [PATCH] fix(clippy): resolve unused code warning --- src/ui_server/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ui_server/mod.rs b/src/ui_server/mod.rs index 67b1c69..3150a34 100644 --- a/src/ui_server/mod.rs +++ b/src/ui_server/mod.rs @@ -209,6 +209,7 @@ pub async fn serve_suite() -> impl IntoResponse { } } +#[allow(dead_code)] pub fn remove_section(html: &str, section: &str) -> String { let start_marker = format!("", section); let end_marker = format!("", section);