diff --git a/hlx_statics/blocks/ai-assistant/ai-assistant_suggested-questions.js b/hlx_statics/blocks/ai-assistant/ai-assistant_suggested-questions.js index 58778be5..d5a2685d 100644 --- a/hlx_statics/blocks/ai-assistant/ai-assistant_suggested-questions.js +++ b/hlx_statics/blocks/ai-assistant/ai-assistant_suggested-questions.js @@ -81,7 +81,10 @@ export const updateSuggestedQuestions = (questions) => { export const getCollectionsQuestions = async () => { const rawCollections = await aiApiClient.getCollections(); const questions = rawCollections - .filter((c) => c.id !== "__all-collections__" && !c.referencedCollectionIds) + // .filter((c) => c.id !== "__all-collections__" && !c.referencedCollectionIds) + .filter((c) => + ["app-builder", "io-events", "developer-console"].includes(c.id), + ) .map((c) => ({ id: c.id, label: c.name,