diff --git a/src/aipane/components/HeroComboPrompts.tsx b/src/aipane/components/HeroComboPrompts.tsx index a03b771..6ba0e20 100644 --- a/src/aipane/components/HeroComboPrompts.tsx +++ b/src/aipane/components/HeroComboPrompts.tsx @@ -37,12 +37,12 @@ const HeroComboPrompts: React.FC = ({ onChange, standalon // Filter out standalone prompts if the client is Outlook // Standalone prompts should be used in standalone mode only useEffect(() => { - // if (standalone !== null) { - console.log(`Retrieving prompts with: standalone=${standalone}`); - setPrompts(getPrompts(standalone || false)); - // } else { - // console.error("Standalone mode not set"); - // } + if (standalone !== null) { + console.log(`Retrieving prompts with: standalone=${standalone}`); + setPrompts(getPrompts(standalone || false)); + } else { + console.error("Standalone mode not set"); + } }, [standalone]); const handleChange = React.useCallback(