From fc0fa6ac15c53ee80b8d026fcb272167c945633b Mon Sep 17 00:00:00 2001 From: MattTheTekie Date: Thu, 23 Apr 2026 18:03:08 -0400 Subject: [PATCH] chore: fixes --- legacy.html | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/legacy.html b/legacy.html index 82597b7..9a03003 100644 --- a/legacy.html +++ b/legacy.html @@ -127,15 +127,11 @@ function showAbout(event) { const temp = document.createElement("div"); temp.innerHTML = html; - const section = temp.querySelector("#aboutSection"); + const section = temp.querySelector("#aboutSection .home-text"); target.innerHTML = section - ? ` -
- ${section.innerHTML} -
- ` - : "

About

Missing #aboutSection in about.html

"; + ? section.innerHTML + : "

About

Missing proper structure

"; }) .catch(err => { console.error(err);