chore: rename ground-left as ground-llm

This commit is contained in:
jialin
2025-12-10 15:50:53 +08:00
parent af4849d6cc
commit a08f1e2512
15 changed files with 161 additions and 92 deletions
+5 -10
View File
@@ -3,7 +3,6 @@ import TerminalTabs from './tabs';
export interface TerminalModalProps {
terminals: { url: string; name: string }[];
height: number;
open: boolean;
onClose: () => void;
currentActive?: string;
@@ -11,20 +10,16 @@ export interface TerminalModalProps {
const TerminalModal: React.FC<TerminalModalProps> = ({
terminals,
height,
open,
onClose,
currentActive
}) => {
return (
<div>
<TerminalTabs
terminals={terminals}
height={height}
currentActive={currentActive}
onClose={onClose}
/>
</div>
<TerminalTabs
terminals={terminals}
currentActive={currentActive}
onClose={onClose}
/>
);
};