From 0be626866d168bee4e63f91c1dd52f977e83c9f4 Mon Sep 17 00:00:00 2001 From: Daniel LaForce Date: Mon, 28 Apr 2025 02:06:26 -0600 Subject: [PATCH] chore: Comment out set:html in Terminal for diagnostics --- src/components/Footer.astro | 9 +++++++-- src/components/Terminal.astro | 2 +- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/src/components/Footer.astro b/src/components/Footer.astro index 8f47494..31cb012 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -114,8 +114,13 @@ const services = [ diff --git a/src/components/Terminal.astro b/src/components/Terminal.astro index 5980720..68e22bc 100644 --- a/src/components/Terminal.astro +++ b/src/components/Terminal.astro @@ -66,7 +66,7 @@ const lastIndex = commands.length - 1; {cmd.output && cmd.output.length > 0 && (
{cmd.output.map((line) => ( -
+
{/* set:html={line} */} {line}
{/* Temporarily render raw line */} ))}
)}