From 26d766d3205b0097b1afd7829d5405ce31360cb7 Mon Sep 17 00:00:00 2001 From: f Date: Tue, 18 Mar 2025 12:27:02 +0000 Subject: [PATCH] deploy: 29436b09bd4dc3ae1176f691b2d91baa9b3df44a --- index.html | 2 +- vibe/index.html | 2 +- vibe/script.js | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/index.html b/index.html index e0b7fb3..1360209 100644 --- a/index.html +++ b/index.html @@ -23,7 +23,7 @@ - +
diff --git a/vibe/index.html b/vibe/index.html index d0fe5c6..171aa17 100644 --- a/vibe/index.html +++ b/vibe/index.html @@ -23,7 +23,7 @@ - +
diff --git a/vibe/script.js b/vibe/script.js index b9f41b4..b86d865 100644 --- a/vibe/script.js +++ b/vibe/script.js @@ -189,8 +189,8 @@ function setupSearch() { searchInput.addEventListener('input', async (e) => { const query = e.target.value.toLowerCase(); const prompts = await loadPrompts(); - const filtered = prompts.filter(({ act, prompt }) => - act.toLowerCase().includes(query) || prompt.toLowerCase().includes(query) + const filtered = prompts.filter(({ app, prompt }) => + app.toLowerCase().includes(query) || prompt.toLowerCase().includes(query) ); // Update prompt count