From d943a50df1a0b08d5689f05147006ed964113978 Mon Sep 17 00:00:00 2001 From: Greg Johnston Date: Tue, 24 Oct 2023 15:42:07 -0400 Subject: [PATCH] fix: misaligned `` tags in streaming responses (closes #1930) (#1932) --- integrations/utils/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integrations/utils/src/lib.rs b/integrations/utils/src/lib.rs index 10d7a51ba..702e18fcc 100644 --- a/integrations/utils/src/lib.rs +++ b/integrations/utils/src/lib.rs @@ -125,7 +125,7 @@ pub fn html_parts_separated( }}); {leptos_autoreload} - "# + "# ); let tail = ""; (head, tail) @@ -155,5 +155,5 @@ pub async fn build_async_response( runtime.dispose(); - format!("{head}{buf}{tail}") + format!("{head}{buf}{tail}") }