diff --git a/feature-flow.html b/feature-flow.html
index 71f4f3b..40f5588 100644
--- a/feature-flow.html
+++ b/feature-flow.html
@@ -15,6 +15,9 @@
+
diff --git a/main.ts b/main.ts
index 19b832b..a00745a 100644
--- a/main.ts
+++ b/main.ts
@@ -1,12 +1,12 @@
type TPSSearchParams = {
- display?: "pure" | "full"
+ display?: "house-only" | "full"
}
const params = new URL(document.location.href).searchParams
const display = params.get("display")
-if (display === "pure") {
+if (display === "house-only") {
document.querySelector("header")?.remove()
}