diff --git a/packages/host/app/components/ai-assistant/llm-mode-toggle.gts b/packages/host/app/components/ai-assistant/llm-mode-toggle.gts index e7206fce8f8..af4dae651d6 100644 --- a/packages/host/app/components/ai-assistant/llm-mode-toggle.gts +++ b/packages/host/app/components/ai-assistant/llm-mode-toggle.gts @@ -20,13 +20,17 @@ interface Signature { } export default class LLMModeToggle extends Component { + private get selected(): LLMMode { + return this.args.selected === 'act' ? 'act' : 'ask'; + } +