diff --git a/src/pages/tips/hide-and-seek/solution.astro b/src/pages/tips/hide-and-seek/solution.astro
index 87af839..2c96056 100644
--- a/src/pages/tips/hide-and-seek/solution.astro
+++ b/src/pages/tips/hide-and-seek/solution.astro
@@ -69,6 +69,7 @@ import "./_solution_styles.css";
.querySelector("#other > div:nth-of-type(2)")
.replaceWith(document.querySelector("#other > div").cloneNode(true));
const twin = document.querySelector("#other > div:nth-of-type(2) ul");
+ document.querySelector("#other > div:nth-of-type(2) .button-link")?.remove();
twin.id = "";
twin.scrollTop = scrollInfo.scrollTop;
const x = twin.querySelectorAll("li");
@@ -115,7 +116,7 @@ import "./_solution_styles.css";
introduced to make things simple. This wasn't. Give us nested groups,
please! ;-)
[Back to the Hide and Seek page]