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