From 9e4e6a14450ddc4f30fa5fa3e0d23e49e5178dc3 Mon Sep 17 00:00:00 2001 From: Spxg Date: Thu, 22 May 2025 01:32:59 +0800 Subject: [PATCH] Remove unnecessary Output tag --- src/app/header.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/header.rs b/src/app/header.rs index 32db35b..a29921c 100644 --- a/src/app/header.rs +++ b/src/app/header.rs @@ -384,7 +384,7 @@ fn ShareButton() -> impl IntoView { .collect::>() .join("\n"); - offset_inserts.push((end, format!("\n-- Output:\n{result}\n"))); + offset_inserts.push((end, format!("\n{result}\n"))); } } }