Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 2 additions & 20 deletions src/renderer/components/VersionManagementPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ import {
} from '../store/thunks/webServiceThunks';
import type { RootState } from '../store';
import { PackageSourceSelector } from './PackageSourceSelector';
import { InstallationWizard } from './installation-wizard';


interface Version {
id: string;
Expand Down Expand Up @@ -115,7 +115,7 @@ export default function VersionManagementPage() {
const [reinstallDialogOpen, setReinstallDialogOpen] = useState(false);
const [uninstallDialogOpen, setUninstallDialogOpen] = useState(false);
const [pendingVersionId, setPendingVersionId] = useState<string | null>(null);
const [llmWizardOpen, setLlmWizardOpen] = useState(false);


useEffect(() => {
fetchAllData();
Expand Down Expand Up @@ -514,16 +514,6 @@ export default function VersionManagementPage() {
</div>
</div>

{/* Claude Installation Button */}
<div className="mt-4">
<button
onClick={() => setLlmWizardOpen(true)}
className="px-4 py-2 text-sm bg-primary hover:bg-primary/90 text-primary-foreground rounded-lg transition-colors flex items-center gap-2"
>
<Bot className="w-4 h-4" />
{t('versionManagement.claude.installationButton')}
</button>
</div>
</div>

{/* Package Source Selector */}
Expand Down Expand Up @@ -1024,14 +1014,6 @@ export default function VersionManagementPage() {
</DialogContent>
</Dialog>

{/* LLM Installation Wizard Dialog */}
{llmWizardOpen && (
<InstallationWizard
manifestPath="/path/to/manifest.json"
onClose={() => setLlmWizardOpen(false)}
onComplete={() => setLlmWizardOpen(false)}
/>
)}
</div>
);
}
Loading